Module boa_engine::vm

source ·
Expand description

Boa’s ECMAScript Virtual Machine

The Virtual Machine (VM) handles generating instructions, then executing them. This module will provide an instruction set for the AST to use, various traits, plus an interpreter to execute those instructions

Structs§

  • A CallFrame holds the state of a function call.
  • The internal representation of a JavaScript function.
  • Represents the limits of different runtime operations.
  • Virtual Machine.

Enums§

  • Indicates how a generator function that has been called/resumed should return.