[][src]Module boa::environment::declerative_environment_record

Declerative Records

Each declarative Environment Record is associated with an ECMAScript program scope containing variable, constant, let, class, module, import, and/or function declarations. A declarative Environment Record binds the set of identifiers defined by the declarations contained within its scope. More info: ECMA-262 sec-declarative-environment-records

Structs

DeclerativeEnvironmentRecord

A declarative Environment Record binds the set of identifiers defined by the declarations contained within its scope.

DeclerativeEnvironmentRecordBinding

Declerative Bindings have a few properties for book keeping purposes, such as mutability (const vs let). Can it be deleted? and strict mode.