In This Article

FunctionDeclaration Class

Represents a function declaration.

public class FunctionDeclaration : AstNodeBase, IDeclaration, IStatement, IFunction, IAstNode
Inheritance:
object AstNodeBase object
Implements:
IDeclaration IStatement IFunction IAstNode

Remarks

This type was generated by the Actipro Language Designer tool v22.1.0.0 (http://www.actiprosoftware.com).

Constructors

FunctionDeclaration()

Initializes an instance of the class.

public FunctionDeclaration()

Properties

Body

Gets or sets the body.

public FunctionBody Body { get; set; }

Property Value

FunctionBody:

The body.

HasParameters

Returns whether the Parameters collection property contains at least one item.

public bool HasParameters { get; }

Property Value

bool:

true if there is at least one item in the collection; otherwise, false.

Id

Gets the An integer value that identifies the type of AST node.

public override int Id { get; }

Property Value

int:

The An integer value that identifies the type of AST node.

IsAsync

Gets or sets the is async.

public bool IsAsync { get; set; }

Property Value

bool:

The is async.

IsGenerator

Gets or sets the is generator.

public bool IsGenerator { get; set; }

Property Value

bool:

The is generator.

Name

Gets or sets the name.

public Identifier Name { get; set; }

Property Value

Identifier:

The name.

Parameters

Gets the parameters.

public IList<IPattern> Parameters { get; }

Property Value

IList<IPattern>:

The parameters.

Methods

GetChildrenEnumerator()

Retrieves an IEnumerator object that can iterate the child IAstNode objects in this node.

protected override IEnumerator<IAstNode> GetChildrenEnumerator()

Returns

IEnumerator<IAstNode>:

An IEnumerator object that can iterate the child IAstNode objects in this node.

Inherited Members