Enhanced C#
Language of your choice: library documentation
|
Provides the Type()
extension method required by Token and the ToString(Token) method to express an EC# token as a string, for tokens that contain sufficient information to do so.
More...
Provides the Type()
extension method required by Token and the ToString(Token) method to express an EC# token as a string, for tokens that contain sufficient information to do so.
Static Public Member Functions | |
static TokenType | Type (this Token t) |
Converts t.TypeInt to TokenType. More... | |
static string | ToString (Token t, ICharSource sourceCode) |
Expresses an EC# token as a string. More... | |
|
inlinestatic |
Expresses an EC# token as a string.
Note that some Tokens do not contain enough information to reconstruct a useful token string, e.g. comment tokens do not store the comment but merely contain the location of the comment in the source code. For performance reasons, a Token does not have a reference to its source file, so this method cannot return the original string.
The results are undefined if the token was not produced by EcsLexer.
References Loyc.Syntax.Lexing.Token.EndIndex, Loyc.Syntax.Lexing.Token.Kind, Loyc.Syntax.Lexing.Token.Length, Loyc.Collections.ICharSource.Slice(), Loyc.Syntax.Lexing.Token.StartIndex, Loyc.Syntax.Lexing.Token.Style, Loyc.Syntax.Lexing.Token.TypeInt, and Loyc.Syntax.Lexing.Token.Value.
|
inlinestatic |
Converts t.TypeInt
to TokenType.
References Loyc.Syntax.Lexing.Token.TypeInt.