[][src]Struct boa::builtins::value::Value

pub struct Value(_);

A Garbage-collected Javascript value as represented in the interpreter.

Implementations

impl Value[src]

pub fn strict_equals(&self, other: &Self) -> bool[src]

Strict equality comparison.

This method is executed when doing strict equality comparisons with the === operator. For more information, check https://tc39.es/ecma262/#sec-strict-equality-comparison.

pub fn equals(
    &mut self,
    other: &mut Self,
    interpreter: &mut Interpreter
) -> bool
[src]

Abstract equality comparison.

This method is executed when doing abstract equality comparisons with the == operator. For more information, check https://tc39.es/ecma262/#sec-abstract-equality-comparison

impl Value[src]

pub fn undefined() -> Self[src]

Creates a new undefined value.

pub fn null() -> Self[src]

Creates a new null value.

pub fn string<S>(value: S) -> Self where
    S: Into<String>, 
[src]

Creates a new string value.

pub fn rational<N>(value: N) -> Self where
    N: Into<f64>, 
[src]

Creates a new number value.

pub fn integer<I>(value: I) -> Self where
    I: Into<i32>, 
[src]

Creates a new number value.

pub fn number<N>(value: N) -> Self where
    N: Into<f64>, 
[src]

Creates a new number value.

pub fn bigint(value: BigInt) -> Self[src]

Creates a new bigint value.

pub fn boolean(value: bool) -> Self[src]

Creates a new boolean value.

pub fn object(object: Object) -> Self[src]

Creates a new object value.

pub fn data(&self) -> &ValueData[src]

Gets the underlying ValueData structure.

pub fn as_num_to_power(&self, other: Self) -> Self[src]

Helper function to convert the Value to a number and compute its power.

pub fn new_object(global: Option<&Value>) -> Self[src]

Returns a new empty object

pub fn new_object_from_prototype(proto: Value, kind: ObjectKind) -> Self[src]

Similar to new_object, but you can pass a prototype to create from, plus a kind

Methods from Deref<Target = ValueData>

pub fn is_extensible(&self) -> bool[src]

This will tell us if we can exten an object or not, not properly implemented yet

For now always returns true.

For scalar types it should be false, for objects check the private field for extensibilaty. By default true.

<https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/seal would turn extensible to false/> <https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/freeze would also turn extensible to false/>

pub fn is_object(&self) -> bool[src]

Returns true if the value is an object

pub fn is_symbol(&self) -> bool[src]

Returns true if the value is a symbol

pub fn is_function(&self) -> bool[src]

Returns true if the value is a function

pub fn is_undefined(&self) -> bool[src]

Returns true if the value is undefined

pub fn is_null(&self) -> bool[src]

Returns true if the value is null

pub fn is_null_or_undefined(&self) -> bool[src]

Returns true if the value is null or undefined

pub fn is_double(&self) -> bool[src]

Returns true if the value is a 64-bit floating-point number

pub fn is_integer(&self) -> bool[src]

Returns true if the value is integer.

pub fn is_number(&self) -> bool[src]

Returns true if the value is a number

pub fn is_string(&self) -> bool[src]

Returns true if the value is a string

pub fn is_boolean(&self) -> bool[src]

Returns true if the value is a boolean

pub fn is_true(&self) -> bool[src]

Returns true if the value is true

toBoolean

pub fn to_number(&self) -> f64[src]

Converts the value into a 64-bit floating point number

pub fn to_integer(&self) -> i32[src]

Converts the value into a 32-bit integer

pub fn to_bigint(&self) -> Option<BigInt>[src]

Helper function.

pub fn as_object(&self) -> Option<GcCellRef<Object>>[src]

pub fn remove_property(&self, field: &str) -> bool[src]

Removes a property from a Value object.

It will return a boolean based on if the value was removed, if there was no value to remove false is returned

pub fn get_property(&self, field: &str) -> Option<Property>[src]

Resolve the property in the object.

A copy of the Property is returned.

pub fn update_property(
    &self,
    field: &str,
    value: Option<Value>,
    enumerable: Option<bool>,
    writable: Option<bool>,
    configurable: Option<bool>
)
[src]

update_prop will overwrite individual Property fields, unlike Set_prop, which will overwrite prop with a new Property Mostly used internally for now

pub fn get_internal_slot(&self, field: &str) -> Value[src]

Resolve the property in the object.

Returns a copy of the Property.

pub fn get_field(&self, field: Value) -> Value[src]

Resolve the property in the object and get its value, or undefined if this is not an object or the field doesn't exist get_field recieves a Property from get_prop(). It should then return the [[Get]] result value if that's set, otherwise fall back to [Value] TODO: this function should use the get Value if its set

pub fn has_internal_state(&self) -> bool[src]

Check whether an object has an internal state set.

pub fn get_internal_state(&self) -> Option<InternalStateCell>[src]

Get the internal state of an object.

pub fn with_internal_state_ref<S: Any + InternalState, R, F: FnOnce(&S) -> R>(
    &self,
    f: F
) -> R
[src]

Run a function with a reference to the internal state.

Panics

This will panic if this value doesn't have an internal state or if the internal state doesn't have the concrete type S.

pub fn with_internal_state_mut<S: Any + InternalState, R, F: FnOnce(&mut S) -> R>(
    &self,
    f: F
) -> R
[src]

Run a function with a mutable reference to the internal state.

Panics

This will panic if this value doesn't have an internal state or if the internal state doesn't have the concrete type S.

pub fn has_field(&self, field: &str) -> bool[src]

Check to see if the Value has the field, mainly used by environment records

pub fn get_field_slice(&self, field: &str) -> Value[src]

Resolve the property in the object and get its value, or undefined if this is not an object or the field doesn't exist

pub fn set_field(&self, field: Value, val: Value) -> Value[src]

Set the field in the value Field could be a Symbol, so we need to accept a Value (not a string)

pub fn set_field_slice(&self, field: &str, val: Value) -> Value[src]

Set the field in the value

pub fn set_internal_slot(&self, field: &str, val: Value) -> Value[src]

Set the private field in the value

pub fn set_kind(&self, kind: ObjectKind)[src]

Set the kind of an object

pub fn set_property(&self, field: String, prop: Property) -> Property[src]

Set the property in the value

pub fn set_property_slice(&self, field: &str, prop: Property) -> Property[src]

Set the property in the value

pub fn set_internal_state<T: Any + InternalState>(&self, state: T)[src]

Set internal state of an Object. Discards the previous state if it was set.

pub fn to_json(&self) -> JSONValue[src]

Conversts the Value to JSON.

pub fn get_type(&self) -> &'static str[src]

Get the type of the value

https://tc39.es/ecma262/#sec-typeof-operator

Trait Implementations

impl Add<Value> for Value[src]

type Output = Self

The resulting type after applying the + operator.

impl BitAnd<Value> for Value[src]

type Output = Self

The resulting type after applying the & operator.

impl BitOr<Value> for Value[src]

type Output = Self

The resulting type after applying the | operator.

impl BitXor<Value> for Value[src]

type Output = Self

The resulting type after applying the ^ operator.

impl Clone for Value[src]

impl Debug for Value[src]

impl Default for Value[src]

impl Deref for Value[src]

type Target = ValueData

The resulting type after dereferencing.

impl Display for Value[src]

impl Div<Value> for Value[src]

type Output = Self

The resulting type after applying the / operator.

impl Drop for Value[src]

impl Finalize for Value[src]

impl<'_, T> From<&'_ [T]> for Value where
    T: Clone + Into<Value>, 
[src]

impl<'_> From<&'_ Property> for Value[src]

impl<'_> From<&'_ Value> for Value[src]

impl<'_> From<&'_ Value> for String[src]

impl<'_> From<&'_ Value> for f64[src]

impl<'_> From<&'_ Value> for i32[src]

impl<'_> From<&'_ Value> for usize[src]

impl<'_> From<&'_ Value> for bool[src]

impl<'_> From<&'_ Value> for JSONValue[src]

impl<'_> From<&'_ str> for Value[src]

impl<'a> From<&'a Value> for Property[src]

fn from(value: &Value) -> Self[src]

Attempt to fetch values "configurable", "enumerable", "writable" from the value, if they're not there default to false

impl From<()> for Value[src]

impl From<BigInt> for Value[src]

impl From<Object> for Value[src]

impl<T> From<Option<T>> for Value where
    T: Into<Value>, 
[src]

impl From<String> for Value[src]

impl From<Value> for Value[src]

impl<T> From<Vec<T>> for Value where
    T: Into<Value>, 
[src]

impl From<bool> for Value[src]

impl From<char> for Value[src]

impl From<f64> for Value[src]

impl From<i32> for Value[src]

impl From<usize> for Value[src]

impl Mul<Value> for Value[src]

type Output = Self

The resulting type after applying the * operator.

impl Neg for Value[src]

type Output = Self

The resulting type after applying the - operator.

impl Not for Value[src]

type Output = Self

The resulting type after applying the ! operator.

impl Rem<Value> for Value[src]

type Output = Self

The resulting type after applying the % operator.

impl Shl<Value> for Value[src]

type Output = Self

The resulting type after applying the << operator.

impl Shr<Value> for Value[src]

type Output = Self

The resulting type after applying the >> operator.

impl Sub<Value> for Value[src]

type Output = Self

The resulting type after applying the - operator.

impl Trace for Value[src]

impl<'_> TryFrom<&'_ Value> for char[src]

type Error = TryFromCharError

The type returned in the event of a conversion error.

impl<'_> TryFrom<&'_ Value> for BigInt[src]

type Error = TryFromBigIntError

The type returned in the event of a conversion error.

impl<'_> TryFrom<&'_ Value> for Object[src]

type Error = TryFromObjectError

The type returned in the event of a conversion error.

Auto Trait Implementations

impl !RefUnwindSafe for Value

impl !Send for Value

impl !Sync for Value

impl Unpin for Value

impl !UnwindSafe for Value

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, Rhs, Output> NumOps<Rhs, Output> for T where
    T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,