[][src]Module boa::js::object

The global Object object

Structs

Property

A Javascript Property AKA The Property Descriptor
[SPEC] - The Property Descriptor Specification Type
[SPEC] - Default Attribute Values

Statics

INSTANCE_PROTOTYPE

Static __proto__, usually set on Object instances as a key to point to their respective prototype object.
As this string will be used a lot throughout the program, its best being a static global string which will be referenced

PROTOTYPE

Static prototype, usually set on constructors as a key to point to their respective prototype object.
As this string will be used a lot throughout the program, its best being a static global string which will be referenced

Functions

_create

Create a new Object object

define_prop

Define a property in an object

get_proto_of

Get the prototype of an object

has_own_prop

Check if it has a property

init

Initialise the Object object on the global object

make_object

Create a new object

set_proto_of

Set the prototype of an object

to_string

To string

Type Definitions

ObjectData