In This Article

DeclarationBase Class

Represents a declaration base.

public class DeclarationBase : Statement, IAstNode
Inheritance:
Object AstNodeBase Statement Object
Derived:
ClassDeclaration FunctionDeclaration
Implements:
IAstNode

Remarks

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

Constructors

DeclarationBase()

public DeclarationBase()

Properties

Body

Gets or sets the body.

public BlockStatement Body { get; set; }

Property Value

BlockStatement:

The body.

Decorators

Gets the decorators.

public IList<Decorator> Decorators { get; }

Property Value

IList<Decorator>:

The decorators.

HasDecorators

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

public bool HasDecorators { 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.

Name

Gets or sets the name.

public SimpleName Name { get; set; }

Property Value

SimpleName:

The name.

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