quickjs-emscripten • quickjs-emscripten-core • Readme | Exports
quickjs-emscripten / quickjs-emscripten-core / ContextEvalOptions
backtraceBarrier?:
boolean
don't include the stack frames before this eval in the Error() backtraces
packages/quickjs-emscripten-core/src/types.ts:263
compileOnly?:
boolean
compile but do not run. The result is an object with a JS_TAG_FUNCTION_BYTECODE or JS_TAG_MODULE tag. It can be executed with JS_EvalFunction().
packages/quickjs-emscripten-core/src/types.ts:261
strict?:
boolean
Force "strict" mode
packages/quickjs-emscripten-core/src/types.ts:253
strip?:
boolean
Force "strip" mode
packages/quickjs-emscripten-core/src/types.ts:255
type?:
"global"
|"module"
Global code (default), or "module" code?
- When type is
"global"
, the code is evaluated in the global scope of the QuickJSContext, and the return value is the result of the last expression. - When type is
"module"
, the code is evaluated is a module scope, may useimport
,export
, and top-levelawait
. The return value is the module's exports, or a promise for the module's exports.
packages/quickjs-emscripten-core/src/types.ts:251
Generated using typedoc-plugin-markdown and TypeDoc