File tree 1 file changed +3
-1
lines changed
wasm/src/org.graalvm.wasm/src/org/graalvm/wasm
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 47
47
48
48
import org .graalvm .options .OptionDescriptors ;
49
49
import org .graalvm .options .OptionValues ;
50
+ import org .graalvm .polyglot .SandboxPolicy ;
50
51
import org .graalvm .wasm .api .JsConstants ;
51
52
import org .graalvm .wasm .api .WebAssembly ;
52
53
import org .graalvm .wasm .exception .WasmJsApiException ;
75
76
contextPolicy = TruffleLanguage .ContextPolicy .SHARED , //
76
77
fileTypeDetectors = WasmFileDetector .class , //
77
78
interactive = false , //
78
- website = "https://www.graalvm.org/webassembly/" )
79
+ website = "https://www.graalvm.org/webassembly/" , //
80
+ sandbox = SandboxPolicy .CONSTRAINED )
79
81
@ ProvidedTags ({StandardTags .RootTag .class , StandardTags .RootBodyTag .class , StandardTags .StatementTag .class })
80
82
public final class WasmLanguage extends TruffleLanguage <WasmContext > {
81
83
public static final String ID = "wasm" ;
You can’t perform that action at this time.
0 commit comments