Class ReturnStatementNode
- Namespace
- RDCore.SDK.Model.AST.Statements
- Assembly
- RDCore.SDK.dll
Represents a statement that pops an offset from the local return stack, then moves the current instruction pointer to that instruction (MS-VBAL §5.4.2.15).
public record ReturnStatementNode : StatementNode, IEquatable<SyntaxNode>, IExecutableNode, IEquatable<StatementNode>, IEquatable<ReturnStatementNode>
- Inheritance
-
ReturnStatementNode
- Implements
- Inherited Members
Constructors
ReturnStatementNode(SyntaxNodeId, SourceLocation)
Represents a statement that pops an offset from the local return stack, then moves the current instruction pointer to that instruction (MS-VBAL §5.4.2.15).
public ReturnStatementNode(SyntaxNodeId Identity, SourceLocation SourceLocation)
Parameters
IdentitySyntaxNodeIdA unique identifier for this specific syntax node.
SourceLocationSourceLocationThe document location (
Uri+Range) of the bound expression.