C# 클래스 ExpressiveAnnotations.Analysis.Token

Token definition.
파일 보기 프로젝트 열기: jwaliszko/ExpressiveAnnotations 1 사용 예제들

공개 메소드들

메소드 설명
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.