Table of Contents

Class StatementNode

Namespace
RDCore.SDK.Model.AST.Abstract
Assembly
RDCore.SDK.dll

A SyntaxNode representing an executable statement.

public abstract record StatementNode : SyntaxNode, IEquatable<SyntaxNode>, IExecutableNode, IEquatable<StatementNode>
Inheritance
StatementNode
Implements
Derived
Inherited Members

Constructors

StatementNode(SyntaxNodeId, SourceLocation, ImmutableArray<SyntaxNode>)

A SyntaxNode representing an executable statement.

protected StatementNode(SyntaxNodeId Identity, SourceLocation SourceLocation, ImmutableArray<SyntaxNode> Inputs)

Parameters

Identity SyntaxNodeId

A unique identifier for this specific syntax node.

SourceLocation SourceLocation

The document location (Uri+Range) of the bound expression.

Inputs ImmutableArray<SyntaxNode>

The inputs of the executable statement; expressions evaluated immediately before the call.

Properties

Inputs

The inputs of the executable statement; expressions evaluated immediately before the call.

public ImmutableArray<SyntaxNode> Inputs { get; init; }

Property Value

ImmutableArray<SyntaxNode>