In This Article

IDebuggableAstNode Interface

Provides the base requirements for a debuggable IAstNode.

public interface IDebuggableAstNode

Properties

EndOffset

The end offset of this AST node, if known.

int? EndOffset { get; }

Property Value

int?

StartOffset

The start offset of this AST node, if known.

int? StartOffset { get; }

Property Value

int?

TreeString

The AST node string representation.

string TreeString { get; }

Property Value

string

Value

The AST node value.

string? Value { get; }

Property Value

string

Extension Methods