Skip to content

update wast version v0.0.25 #116

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 19 commits into from
Mar 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ dependencies {
// QuickBuffers
implementation group: 'us.hebi.quickbuf', name: 'quickbuf-runtime', version: '1.4'
// wast
implementation group: 'io.github.wycst', name: 'wast', version: '0.0.23'
implementation group: 'io.github.wycst', name: 'wast', version: '0.0.25'

// Test
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
Expand Down
6 changes: 6 additions & 0 deletions src/main/java/com/github/fabienrenaud/jjb/JsonBench.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import com.github.fabienrenaud.jjb.data.JsonSource;
import com.github.fabienrenaud.jjb.data.JsonSourceFactory;
import io.github.wycst.wast.json.JSONVmOptions;

/**
* @author Fabien Renaud
Expand All @@ -11,6 +12,11 @@ public abstract class JsonBench {
protected static final JsonSource CLI_JSON_SOURCE = JsonSourceFactory.create();
public abstract JsonSource JSON_SOURCE();

public JsonBench() {
JSONVmOptions.disableIntrinsicCandidate();
JSONVmOptions.disableIncubatorVector();
}

public Object gson() throws Exception {
return null;
}
Expand Down