Skip to content

Latest commit

 

History

History
85 lines (47 loc) · 2.46 KB

ContextEvalOptions.md

File metadata and controls

85 lines (47 loc) · 2.46 KB

quickjs-emscriptenquickjs-emscripten-coreReadme | Exports


quickjs-emscripten / quickjs-emscripten-core / ContextEvalOptions

Interface: ContextEvalOptions

Contents

Properties

backtraceBarrier?

backtraceBarrier?: boolean

don't include the stack frames before this eval in the Error() backtraces

Source

packages/quickjs-emscripten-core/src/types.ts:263


compileOnly?

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().

Source

packages/quickjs-emscripten-core/src/types.ts:261


strict?

strict?: boolean

Force "strict" mode

Source

packages/quickjs-emscripten-core/src/types.ts:253


strip?

strip?: boolean

Force "strip" mode

Source

packages/quickjs-emscripten-core/src/types.ts:255


type?

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 use import, export, and top-level await. The return value is the module's exports, or a promise for the module's exports.

Source

packages/quickjs-emscripten-core/src/types.ts:251


Generated using typedoc-plugin-markdown and TypeDoc