[][src]Struct boa::syntax::ast::node::declaration::FunctionDecl

pub struct FunctionDecl { /* fields omitted */ }

The function declaration (function statement) defines a function with the specified parameters.

A function created with a function declaration is a Function object and has all the properties, methods and behavior of Function.

A function can also be created using an expression (see function expression).

By default, functions return undefined. To return any other value, the function must have a return statement that specifies the value to return.

More information:

Implementations

impl FunctionDecl[src]

pub fn name(&self) -> &str[src]

Gets the name of the function declaration.

pub fn parameters(&self) -> &[FormalParameter][src]

Gets the list of parameters of the function declaration.

pub fn body(&self) -> &[Node][src]

Gets the body of the function declaration.

Trait Implementations

impl Clone for FunctionDecl[src]

impl Debug for FunctionDecl[src]

impl Display for FunctionDecl[src]

impl Drop for FunctionDecl[src]

impl Executable for FunctionDecl[src]

impl Finalize for FunctionDecl[src]

impl From<FunctionDecl> for Node[src]

impl PartialEq<FunctionDecl> for FunctionDecl[src]

impl StructuralPartialEq for FunctionDecl[src]

impl Trace for FunctionDecl[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> 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>,