Interface ILexerConstants
Lexer configuration
Namespace: SqlDotNet.Compiler
Assembly: SqlDotNet.dll
Syntax
public interface ILexerConstants
Properties
| Improve this Doc View SourceComplexToken
Complex tokens are tokens which has a specific start and end token, like a string: "Hello World"
Declaration
char[] ComplexToken { get; }
Property Value
Type | Description |
---|---|
System.Char[] |
ComplexTokenEscapeChar
Escape-Charachter in complex tokens
Declaration
char[] ComplexTokenEscapeChar { get; }
Property Value
Type | Description |
---|---|
System.Char[] |
EndMultilineComment
String ending a multiline comment
Declaration
string EndMultilineComment { get; }
Property Value
Type | Description |
---|---|
System.String |
FollowingTokens
Following tokens, like >= out of > and =
Declaration
string[] FollowingTokens { get; }
Property Value
Type | Description |
---|---|
System.String[] |
SingleLineComment
String starting a single line comment
Declaration
string SingleLineComment { get; }
Property Value
Type | Description |
---|---|
System.String |
StartMultilineComment
String starting a multiline comment
Declaration
string StartMultilineComment { get; }
Property Value
Type | Description |
---|---|
System.String |
TokenSeperator
Seperator tokens
Declaration
char[] TokenSeperator { get; }
Property Value
Type | Description |
---|---|
System.Char[] |