Skip to content

Latest commit

 

History

History
71 lines (39 loc) · 2.12 KB

File metadata and controls

71 lines (39 loc) · 2.12 KB

quickjs-emscriptenquickjs-emscripten-coreReadme | Exports


quickjs-emscripten / quickjs-emscripten-core / ModuleEvalOptions

Interface: ModuleEvalOptions

Options for QuickJSWASMModule#evalCode.

Contents

Properties

maxStackSizeBytes?

maxStackSizeBytes?: number

Stack size limit for this vm, in bytes To remove the limit, set to 0.

Source

packages/quickjs-emscripten-core/src/module.ts:82


memoryLimitBytes?

memoryLimitBytes?: number

Memory limit, in bytes, of WebAssembly heap memory used by the QuickJS VM.

Source

packages/quickjs-emscripten-core/src/module.ts:76


moduleLoader?

moduleLoader?: JSModuleLoader

Module loader for any import statements or expressions.

Source

packages/quickjs-emscripten-core/src/module.ts:87


shouldInterrupt?

shouldInterrupt?: InterruptHandler

Interrupt evaluation if shouldInterrupt returns true. See shouldInterruptAfterDeadline.

Source

packages/quickjs-emscripten-core/src/module.ts:71


Generated using typedoc-plugin-markdown and TypeDoc