Enum boa::syntax::ast::node::MethodDefinitionKind [−][src]
pub enum MethodDefinitionKind {
Get,
Set,
Ordinary,
}Expand description
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
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:
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:
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
Runs Finalize::finalize() on this object and all contained subobjects Read more
Auto Trait Implementations
impl RefUnwindSafe for MethodDefinitionKind
impl Send for MethodDefinitionKind
impl Sync for MethodDefinitionKind
impl Unpin for MethodDefinitionKind
impl UnwindSafe for MethodDefinitionKind
Blanket Implementations
Mutably borrows from an owned value. Read more