File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
src/main/java/com/github/fabienrenaud/jjb Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ dependencies {
98
98
// QuickBuffers
99
99
implementation group : ' us.hebi.quickbuf' , name : ' quickbuf-runtime' , version : ' 1.4'
100
100
// wast
101
- implementation group : ' io.github.wycst' , name : ' wast' , version : ' 0.0.23 '
101
+ implementation group : ' io.github.wycst' , name : ' wast' , version : ' 0.0.25 '
102
102
103
103
// Test
104
104
testImplementation group : ' junit' , name : ' junit' , version : ' 4.13.2'
Original file line number Diff line number Diff line change 2
2
3
3
import com .github .fabienrenaud .jjb .data .JsonSource ;
4
4
import com .github .fabienrenaud .jjb .data .JsonSourceFactory ;
5
+ import io .github .wycst .wast .json .JSONVmOptions ;
5
6
6
7
/**
7
8
* @author Fabien Renaud
@@ -11,6 +12,11 @@ public abstract class JsonBench {
11
12
protected static final JsonSource CLI_JSON_SOURCE = JsonSourceFactory .create ();
12
13
public abstract JsonSource JSON_SOURCE ();
13
14
15
+ public JsonBench () {
16
+ JSONVmOptions .disableIntrinsicCandidate ();
17
+ JSONVmOptions .disableIncubatorVector ();
18
+ }
19
+
14
20
public Object gson () throws Exception {
15
21
return null ;
16
22
}
You can’t perform that action at this time.
0 commit comments