In This Article

ClassExpression Class

Represents a class expression.

public class ClassExpression : AstNodeBase, IExpression, IAstNode
Inheritance:
object AstNodeBase object
Implements:
IExpression IAstNode

Remarks

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

Constructors

ClassExpression()

Initializes an instance of the class.

public ClassExpression()

Properties

Body

Gets or sets the body.

public ClassBody Body { get; set; }

Property Value

ClassBody:

The body.

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.

Name

Gets or sets the name.

public Identifier Name { get; set; }

Property Value

Identifier:

The name.

SuperClass

Gets or sets the super class.

public IExpression SuperClass { get; set; }

Property Value

IExpression:

The super class.

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