diff options
Diffstat (limited to 'runtime/js/99_main.js')
-rw-r--r-- | runtime/js/99_main.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/js/99_main.js b/runtime/js/99_main.js index d83bfbff1..2d5c96f6a 100644 --- a/runtime/js/99_main.js +++ b/runtime/js/99_main.js @@ -92,12 +92,14 @@ if (Symbol.metadata) { } ObjectDefineProperties(Symbol, { dispose: { + __proto__: null, value: SymbolDispose, enumerable: false, writable: false, configurable: false, }, metadata: { + __proto__: null, value: SymbolMetadata, enumerable: false, writable: false, @@ -533,6 +535,7 @@ ObjectDefineProperties(finalDenoNs, { args: core.propGetterOnly(opArgs), mainModule: core.propGetterOnly(() => op_main_module()), exitCode: { + __proto__: null, get() { return os.getExitCode(); }, |