C# Класс ExpressiveAnnotations.Analysis.Token

Token definition.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
ToString ( ) : string

Generates a human-reabable string for the token instance (handy for debugging purposes).

Token ( TokenType type, object value, string rawValue, Location location )

Initializes a new instance of the Token class.

Описание методов

ToString() публичный Метод

Generates a human-reabable string for the token instance (handy for debugging purposes).
public ToString ( ) : string
Результат string

Token() публичный Метод

Initializes a new instance of the Token class.
public Token ( TokenType type, object value, string rawValue, Location location )
type TokenType The token type.
value object The token value.
rawValue string The token raw value.
location Location The token location within a specified expression.