expression

< Back


IToken

Namespace: Albatross.Expression.Nodes

Base interface for all tokens in the expression system, providing basic token identification and text representation.

public interface IToken

Attributes NullableContextAttribute

Properties

Token

The token identifier used for parsing and recognition.

public abstract string Token { get; }

Property Value

String

Methods

Text()

Returns the text representation of this token for display or serialization purposes.

string Text()

Returns

String
A string representation of the token.


< Back