[][src]Enum boa::syntax::ast::node::MethodDefinitionKind

pub enum MethodDefinitionKind {
    Get,
    Set,
    Ordinary,
}

Method definition kinds.

Starting with ECMAScript 2015, a shorter syntax for method definitions on objects initializers is introduced. It is a shorthand for a function assigned to the method's name.

More information:

Variants

Get

The get syntax binds an object property to a function that will be called when that property is looked up.

Sometimes it is desirable to allow access to a property that returns a dynamically computed value, or you may want to reflect the status of an internal variable without requiring the use of explicit method calls. In JavaScript, this can be accomplished with the use of a getter.

It is not possible to simultaneously have a getter bound to a property and have that property actually hold a value, although it is possible to use a getter and a setter in conjunction to create a type of pseudo-property.

More information:

Set

The set syntax binds an object property to a function to be called when there is an attempt to set that property.

In JavaScript, a setter can be used to execute a function whenever a specified property is attempted to be changed. Setters are most often used in conjunction with getters to create a type of pseudo-property. It is not possible to simultaneously have a setter on a property that holds an actual value.

More information:

Ordinary

Starting with ECMAScript 2015, you are able to define own methods in a shorter syntax, similar to the getters and setters.

More information:

Trait Implementations

impl Clone for MethodDefinitionKind[src]

impl Copy for MethodDefinitionKind[src]

impl Debug for MethodDefinitionKind[src]

impl Finalize for MethodDefinitionKind[src]

impl PartialEq<MethodDefinitionKind> for MethodDefinitionKind[src]

impl StructuralPartialEq for MethodDefinitionKind[src]

impl Trace for MethodDefinitionKind[src]

Auto Trait Implementations

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> NativeObject for T where
    T: Any + Debug + Trace
[src]

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

type Owned = T

The resulting type after obtaining ownership.

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>,