Type Alias boa_engine::object::JsPrototype

source ·
pub type JsPrototype = Option<JsObject>;
Expand description

Common field names. A type alias for an object prototype.

A None values means that the prototype is the null value.

Aliased Type§

enum JsPrototype {
    None,
    Some(JsObject),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(JsObject)

Some value of type T.