In This Article

VariableDeclarationExpression Class

Represents a variable declaration expression.

public class VariableDeclarationExpression : Expression, IAstNode
Inheritance:
Object AstNodeBase Expression Object
Implements:
IAstNode

Remarks

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

Constructors

VariableDeclarationExpression()

public VariableDeclarationExpression()

Properties

Declarations

Gets the declarations.

public IList<VariableDeclaration> Declarations { get; }

Property Value

IList<VariableDeclaration>:

The declarations.

HasDeclarations

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

public bool HasDeclarations { get; }

Property Value

Boolean:

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

Int32:

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

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