Module boa_engine::realm

source ·
Expand description

Boa’s implementation of ECMAScript’s Realm Records

Conceptually, a realm consists of a set of intrinsic objects, an ECMAScript global environment, all of the ECMAScript code that is loaded within the scope of that global environment, and other associated state and resources.

A realm is represented in this implementation as a Realm struct with the fields specified from the spec.

Structs§

  • Representation of a Realm.