The StaDyn Programming Language
Source code documentation of StaDyn, a hybrid static and dynamic typing language.
|
Public Member Functions | |
override void | setFilename (string f) |
Update _fileinfo attribute whenever filename changes. More... | |
bool | IsLetterCharacter (string s) |
bool | IsIdentifierCharacter (string s) |
bool | IsCombiningCharacter (string s) |
CSharpLexer (Stream ins) | |
CSharpLexer (TextReader r) | |
CSharpLexer (InputBuffer ib) | |
CSharpLexer (LexerSharedInputState state) | |
override IToken | nextToken () |
void | mNEWLINE (bool _createToken) |
void | mWHITESPACE (bool _createToken) |
void | mML_COMMENT (bool _createToken) |
void | mIDENTIFIER (bool _createToken) |
void | mINT_LITERAL (bool _createToken) |
void | mCHAR_LITERAL (bool _createToken) |
void | mSTRING_LITERAL (bool _createToken) |
void | mOPEN_CURLY (bool _createToken) |
void | mCLOSE_CURLY (bool _createToken) |
void | mOPEN_BRACK (bool _createToken) |
void | mCLOSE_BRACK (bool _createToken) |
void | mOPEN_PAREN (bool _createToken) |
void | mCLOSE_PAREN (bool _createToken) |
void | mCOMMA (bool _createToken) |
void | mCOLON (bool _createToken) |
void | mSEMI (bool _createToken) |
void | mPLUS (bool _createToken) |
void | mMINUS (bool _createToken) |
void | mSTAR (bool _createToken) |
void | mDIV (bool _createToken) |
void | mMOD (bool _createToken) |
void | mBIN_AND (bool _createToken) |
void | mBIN_OR (bool _createToken) |
void | mBIN_XOR (bool _createToken) |
void | mLOG_NOT (bool _createToken) |
void | mBIN_NOT (bool _createToken) |
void | mASSIGN (bool _createToken) |
void | mLTHAN (bool _createToken) |
void | mGTHAN (bool _createToken) |
void | mQUESTION (bool _createToken) |
void | mINC (bool _createToken) |
void | mDEC (bool _createToken) |
void | mLOG_AND (bool _createToken) |
void | mLOG_OR (bool _createToken) |
void | mSHIFTL (bool _createToken) |
void | mSHIFTR (bool _createToken) |
void | mEQUAL (bool _createToken) |
void | mNOT_EQUAL (bool _createToken) |
void | mLTE (bool _createToken) |
void | mGTE (bool _createToken) |
void | mPLUS_ASSIGN (bool _createToken) |
void | mMINUS_ASSIGN (bool _createToken) |
void | mSTAR_ASSIGN (bool _createToken) |
void | mDIV_ASSIGN (bool _createToken) |
void | mMOD_ASSIGN (bool _createToken) |
void | mBIN_AND_ASSIGN (bool _createToken) |
void | mBIN_OR_ASSIGN (bool _createToken) |
void | mBIN_XOR_ASSIGN (bool _createToken) |
void | mSHIFTL_ASSIGN (bool _createToken) |
void | mSHIFTR_ASSIGN (bool _createToken) |
void | mDEREF (bool _createToken) |
void | mQUOTE (bool _createToken) |
void | mSL_COMMENT (bool _createToken) |
Public Attributes | |
const int | EOF = 1 |
const int | NULL_TREE_LOOKAHEAD = 3 |
const int | UNICODE_CLASS_Nl = 4 |
const int | UNICODE_CLASS_Lt = 5 |
const int | UNICODE_CLASS_Zs = 6 |
const int | UNICODE_CLASS_Ll = 7 |
const int | UNICODE_CLASS_Lu = 8 |
const int | UNICODE_CLASS_Lo = 9 |
const int | UNICODE_CLASS_Lm = 10 |
const int | UNICODE_CLASS_Mn = 11 |
const int | UNICODE_CLASS_Mc = 12 |
const int | UNICODE_CLASS_Nd = 13 |
const int | UNICODE_CLASS_Pc = 14 |
const int | UNICODE_CLASS_Cf = 15 |
const int | TRUE = 16 |
const int | FALSE = 17 |
const int | DEFAULT = 18 |
const int | PP_DEFINE = 19 |
const int | PP_UNDEFINE = 20 |
const int | PP_COND_IF = 21 |
const int | PP_COND_ELIF = 22 |
const int | PP_COND_ELSE = 23 |
const int | PP_COND_ENDIF = 24 |
const int | PP_LINE = 25 |
const int | PP_ERROR = 26 |
const int | PP_WARNING = 27 |
const int | PP_REGION = 28 |
const int | PP_ENDREGION = 29 |
const int | PP_FILENAME = 30 |
const int | PP_IDENT = 31 |
const int | PP_STRING = 32 |
const int | PP_NUMBER = 33 |
const int | WHITESPACE = 34 |
const int | QUOTE = 35 |
const int | OPEN_PAREN = 36 |
const int | CLOSE_PAREN = 37 |
const int | LOG_NOT = 38 |
const int | LOG_AND = 39 |
const int | LOG_OR = 40 |
const int | EQUAL = 41 |
const int | NOT_EQUAL = 42 |
const int | SL_COMMENT = 43 |
const int | NEWLINE = 44 |
const int | NOT_NEWLINE = 45 |
const int | NON_NEWLINE_WHITESPACE = 46 |
const int | UNICODE_ESCAPE_SEQUENCE = 47 |
const int | DECIMAL_DIGIT = 48 |
const int | HEX_DIGIT = 49 |
const int | LETTER_CHARACTER = 50 |
const int | DECIMAL_DIGIT_CHARACTER = 51 |
const int | CONNECTING_CHARACTER = 52 |
const int | COMBINING_CHARACTER = 53 |
const int | FORMATTING_CHARACTER = 54 |
const int | ABSTRACT = 55 |
const int | AS = 56 |
const int | BASE = 57 |
const int | BOOL = 58 |
const int | BREAK = 59 |
const int | BYTE = 60 |
const int | CASE = 61 |
const int | CATCH = 62 |
const int | CHAR = 63 |
const int | CHECKED = 64 |
const int | CLASS = 65 |
const int | CONST = 66 |
const int | CONTINUE = 67 |
const int | DECIMAL = 68 |
const int | DELEGATE = 69 |
const int | DO = 70 |
const int | DOUBLE = 71 |
const int | ELSE = 72 |
const int | ENUM = 73 |
const int | EVENT = 74 |
const int | EXPLICIT = 75 |
const int | EXTERN = 76 |
const int | FINALLY = 77 |
const int | FIXED = 78 |
const int | FLOAT = 79 |
const int | FOR = 80 |
const int | FOREACH = 81 |
const int | GOTO = 82 |
const int | IF = 83 |
const int | IMPLICIT = 84 |
const int | IN = 85 |
const int | INT = 86 |
const int | INTERFACE = 87 |
const int | INTERNAL = 88 |
const int | IS = 89 |
const int | LOCK = 90 |
const int | LONG = 91 |
const int | NAMESPACE = 92 |
const int | NEW = 93 |
const int | NULL = 94 |
const int | OBJECT = 95 |
const int | OPERATOR = 96 |
const int | OUT = 97 |
const int | OVERRIDE = 98 |
const int | PARAMS = 99 |
const int | PRIVATE = 100 |
const int | PROTECTED = 101 |
const int | PUBLIC = 102 |
const int | READONLY = 103 |
const int | REF = 104 |
const int | RETURN = 105 |
const int | SBYTE = 106 |
const int | SEALED = 107 |
const int | SHORT = 108 |
const int | SIZEOF = 109 |
const int | STACKALLOC = 110 |
const int | STATIC = 111 |
const int | STRING = 112 |
const int | STRUCT = 113 |
const int | SWITCH = 114 |
const int | THIS = 115 |
const int | THROW = 116 |
const int | TRY = 117 |
const int | TYPEOF = 118 |
const int | UINT = 119 |
const int | ULONG = 120 |
const int | UNCHECKED = 121 |
const int | UNSAFE = 122 |
const int | USHORT = 123 |
const int | USING = 124 |
const int | VIRTUAL = 125 |
const int | VOID = 126 |
const int | VOLATILE = 127 |
const int | WHILE = 128 |
const int | VAR = 129 |
const int | DOT = 130 |
const int | UINT_LITERAL = 131 |
const int | LONG_LITERAL = 132 |
const int | ULONG_LITERAL = 133 |
const int | DECIMAL_LITERAL = 134 |
const int | FLOAT_LITERAL = 135 |
const int | DOUBLE_LITERAL = 136 |
const int | LITERAL_add = 137 |
const int | LITERAL_remove = 138 |
const int | LITERAL_get = 139 |
const int | LITERAL_set = 140 |
const int | LITERAL_assembly = 141 |
const int | LITERAL_field = 142 |
const int | LITERAL_method = 143 |
const int | LITERAL_module = 144 |
const int | LITERAL_param = 145 |
const int | LITERAL_property = 146 |
const int | LITERAL_type = 147 |
const int | ML_COMMENT = 148 |
const int | IDENTIFIER = 149 |
const int | INT_LITERAL = 150 |
const int | CHAR_LITERAL = 151 |
const int | STRING_LITERAL = 152 |
const int | ESCAPED_LITERAL = 153 |
const int | OPEN_CURLY = 154 |
const int | CLOSE_CURLY = 155 |
const int | OPEN_BRACK = 156 |
const int | CLOSE_BRACK = 157 |
const int | COMMA = 158 |
const int | COLON = 159 |
const int | SEMI = 160 |
const int | PLUS = 161 |
const int | MINUS = 162 |
const int | STAR = 163 |
const int | DIV = 164 |
const int | MOD = 165 |
const int | BIN_AND = 166 |
const int | BIN_OR = 167 |
const int | BIN_XOR = 168 |
const int | BIN_NOT = 169 |
const int | ASSIGN = 170 |
const int | LTHAN = 171 |
const int | GTHAN = 172 |
const int | QUESTION = 173 |
const int | INC = 174 |
const int | DEC = 175 |
const int | SHIFTL = 176 |
const int | SHIFTR = 177 |
const int | LTE = 178 |
const int | GTE = 179 |
const int | PLUS_ASSIGN = 180 |
const int | MINUS_ASSIGN = 181 |
const int | STAR_ASSIGN = 182 |
const int | DIV_ASSIGN = 183 |
const int | MOD_ASSIGN = 184 |
const int | BIN_AND_ASSIGN = 185 |
const int | BIN_OR_ASSIGN = 186 |
const int | BIN_XOR_ASSIGN = 187 |
const int | SHIFTL_ASSIGN = 188 |
const int | SHIFTR_ASSIGN = 189 |
const int | DEREF = 190 |
const int | PP_DIRECTIVE = 191 |
Static Public Attributes | |
static readonly BitSet | tokenSet_0_ = new BitSet(mk_tokenSet_0_()) |
static readonly BitSet | tokenSet_1_ = new BitSet(mk_tokenSet_1_()) |
static readonly BitSet | tokenSet_2_ = new BitSet(mk_tokenSet_2_()) |
static readonly BitSet | tokenSet_3_ = new BitSet(mk_tokenSet_3_()) |
static readonly BitSet | tokenSet_4_ = new BitSet(mk_tokenSet_4_()) |
static readonly BitSet | tokenSet_5_ = new BitSet(mk_tokenSet_5_()) |
static readonly BitSet | tokenSet_6_ = new BitSet(mk_tokenSet_6_()) |
static readonly BitSet | tokenSet_7_ = new BitSet(mk_tokenSet_7_()) |
static readonly BitSet | tokenSet_8_ = new BitSet(mk_tokenSet_8_()) |
static readonly BitSet | tokenSet_9_ = new BitSet(mk_tokenSet_9_()) |
static readonly BitSet | tokenSet_10_ = new BitSet(mk_tokenSet_10_()) |
static readonly BitSet | tokenSet_11_ = new BitSet(mk_tokenSet_11_()) |
static readonly BitSet | tokenSet_12_ = new BitSet(mk_tokenSet_12_()) |
static readonly BitSet | tokenSet_13_ = new BitSet(mk_tokenSet_13_()) |
static readonly BitSet | tokenSet_14_ = new BitSet(mk_tokenSet_14_()) |
static readonly BitSet | tokenSet_15_ = new BitSet(mk_tokenSet_15_()) |
static readonly BitSet | tokenSet_16_ = new BitSet(mk_tokenSet_16_()) |
static readonly BitSet | tokenSet_17_ = new BitSet(mk_tokenSet_17_()) |
static readonly BitSet | tokenSet_18_ = new BitSet(mk_tokenSet_18_()) |
static readonly BitSet | tokenSet_19_ = new BitSet(mk_tokenSet_19_()) |
static readonly BitSet | tokenSet_20_ = new BitSet(mk_tokenSet_20_()) |
static readonly BitSet | tokenSet_21_ = new BitSet(mk_tokenSet_21_()) |
static readonly BitSet | tokenSet_22_ = new BitSet(mk_tokenSet_22_()) |
static readonly BitSet | tokenSet_23_ = new BitSet(mk_tokenSet_23_()) |
static readonly BitSet | tokenSet_24_ = new BitSet(mk_tokenSet_24_()) |
Protected Member Functions | |
override IToken | makeToken (int t) |
Ensures all tokens have access to the source file's details. More... | |
void | mPP_DIRECTIVE (bool _createToken) |
void | mNON_NEWLINE_WHITESPACE (bool _createToken) |
void | mLETTER_CHARACTER (bool _createToken) |
void | mUNICODE_ESCAPE_SEQUENCE (bool _createToken) |
void | mDECIMAL_DIGIT_CHARACTER (bool _createToken) |
void | mCONNECTING_CHARACTER (bool _createToken) |
void | mCOMBINING_CHARACTER (bool _createToken) |
void | mFORMATTING_CHARACTER (bool _createToken) |
void | mHEX_DIGIT (bool _createToken) |
void | mDECIMAL_DIGIT (bool _createToken) |
void | mESCAPED_LITERAL (bool _createToken) |
void | mNOT_NEWLINE (bool _createToken) |
void | mUNICODE_CLASS_Zs (bool _createToken) |
void | mUNICODE_CLASS_Lu (bool _createToken) |
void | mUNICODE_CLASS_Ll (bool _createToken) |
void | mUNICODE_CLASS_Lt (bool _createToken) |
void | mUNICODE_CLASS_Lm (bool _createToken) |
void | mUNICODE_CLASS_Lo (bool _createToken) |
void | mUNICODE_CLASS_Nl (bool _createToken) |
void | mUNICODE_CLASS_Nd (bool _createToken) |
void | mUNICODE_CLASS_Pc (bool _createToken) |
void | mUNICODE_CLASS_Mn (bool _createToken) |
void | mUNICODE_CLASS_Mc (bool _createToken) |
void | mUNICODE_CLASS_Cf (bool _createToken) |
Properties | |
TokenStreamSelector | Selector [get, set] |
A for switching between this Lexer and the Preprocessor Lexer. More... | |
Definition at line 38 of file CSharpLexer.cs.
Parser.CSharpLexer.CSharpLexer | ( | Stream | ins | ) |
Definition at line 396 of file CSharpLexer.cs.
Parser.CSharpLexer.CSharpLexer | ( | TextReader | r | ) |
Definition at line 400 of file CSharpLexer.cs.
Parser.CSharpLexer.CSharpLexer | ( | InputBuffer | ib | ) |
Definition at line 404 of file CSharpLexer.cs.
Parser.CSharpLexer.CSharpLexer | ( | LexerSharedInputState | state | ) |
Definition at line 408 of file CSharpLexer.cs.
bool Parser.CSharpLexer.IsCombiningCharacter | ( | string | s | ) |
Definition at line 389 of file CSharpLexer.cs.
bool Parser.CSharpLexer.IsIdentifierCharacter | ( | string | s | ) |
Definition at line 373 of file CSharpLexer.cs.
bool Parser.CSharpLexer.IsLetterCharacter | ( | string | s | ) |
Definition at line 362 of file CSharpLexer.cs.
|
protected |
Ensures all tokens have access to the source file's details.
Definition at line 261 of file CSharpLexer.cs.
void Parser.CSharpLexer.mASSIGN | ( | bool | _createToken | ) |
Definition at line 2581 of file CSharpLexer.cs.
void Parser.CSharpLexer.mBIN_AND | ( | bool | _createToken | ) |
Definition at line 2511 of file CSharpLexer.cs.
void Parser.CSharpLexer.mBIN_AND_ASSIGN | ( | bool | _createToken | ) |
Definition at line 2847 of file CSharpLexer.cs.
void Parser.CSharpLexer.mBIN_NOT | ( | bool | _createToken | ) |
Definition at line 2567 of file CSharpLexer.cs.
void Parser.CSharpLexer.mBIN_OR | ( | bool | _createToken | ) |
Definition at line 2525 of file CSharpLexer.cs.
void Parser.CSharpLexer.mBIN_OR_ASSIGN | ( | bool | _createToken | ) |
Definition at line 2861 of file CSharpLexer.cs.
void Parser.CSharpLexer.mBIN_XOR | ( | bool | _createToken | ) |
Definition at line 2539 of file CSharpLexer.cs.
void Parser.CSharpLexer.mBIN_XOR_ASSIGN | ( | bool | _createToken | ) |
Definition at line 2875 of file CSharpLexer.cs.
void Parser.CSharpLexer.mCHAR_LITERAL | ( | bool | _createToken | ) |
Definition at line 2115 of file CSharpLexer.cs.
void Parser.CSharpLexer.mCLOSE_BRACK | ( | bool | _createToken | ) |
Definition at line 2357 of file CSharpLexer.cs.
void Parser.CSharpLexer.mCLOSE_CURLY | ( | bool | _createToken | ) |
Definition at line 2329 of file CSharpLexer.cs.
void Parser.CSharpLexer.mCLOSE_PAREN | ( | bool | _createToken | ) |
Definition at line 2385 of file CSharpLexer.cs.
void Parser.CSharpLexer.mCOLON | ( | bool | _createToken | ) |
Definition at line 2413 of file CSharpLexer.cs.
|
protected |
Definition at line 1336 of file CSharpLexer.cs.
void Parser.CSharpLexer.mCOMMA | ( | bool | _createToken | ) |
Definition at line 2399 of file CSharpLexer.cs.
|
protected |
Definition at line 1322 of file CSharpLexer.cs.
void Parser.CSharpLexer.mDEC | ( | bool | _createToken | ) |
Definition at line 2651 of file CSharpLexer.cs.
|
protected |
Definition at line 2099 of file CSharpLexer.cs.
|
protected |
Definition at line 1308 of file CSharpLexer.cs.
void Parser.CSharpLexer.mDEREF | ( | bool | _createToken | ) |
Definition at line 2917 of file CSharpLexer.cs.
void Parser.CSharpLexer.mDIV | ( | bool | _createToken | ) |
Definition at line 2483 of file CSharpLexer.cs.
void Parser.CSharpLexer.mDIV_ASSIGN | ( | bool | _createToken | ) |
Definition at line 2819 of file CSharpLexer.cs.
void Parser.CSharpLexer.mEQUAL | ( | bool | _createToken | ) |
Definition at line 2721 of file CSharpLexer.cs.
|
protected |
Definition at line 2146 of file CSharpLexer.cs.
|
protected |
Definition at line 1361 of file CSharpLexer.cs.
void Parser.CSharpLexer.mGTE | ( | bool | _createToken | ) |
Definition at line 2763 of file CSharpLexer.cs.
void Parser.CSharpLexer.mGTHAN | ( | bool | _createToken | ) |
Definition at line 2609 of file CSharpLexer.cs.
|
protected |
Definition at line 2069 of file CSharpLexer.cs.
void Parser.CSharpLexer.mIDENTIFIER | ( | bool | _createToken | ) |
Definition at line 1114 of file CSharpLexer.cs.
void Parser.CSharpLexer.mINC | ( | bool | _createToken | ) |
Definition at line 2637 of file CSharpLexer.cs.
void Parser.CSharpLexer.mINT_LITERAL | ( | bool | _createToken | ) |
Definition at line 1375 of file CSharpLexer.cs.
|
protected |
Definition at line 1231 of file CSharpLexer.cs.
void Parser.CSharpLexer.mLOG_AND | ( | bool | _createToken | ) |
Definition at line 2665 of file CSharpLexer.cs.
void Parser.CSharpLexer.mLOG_NOT | ( | bool | _createToken | ) |
Definition at line 2553 of file CSharpLexer.cs.
void Parser.CSharpLexer.mLOG_OR | ( | bool | _createToken | ) |
Definition at line 2679 of file CSharpLexer.cs.
void Parser.CSharpLexer.mLTE | ( | bool | _createToken | ) |
Definition at line 2749 of file CSharpLexer.cs.
void Parser.CSharpLexer.mLTHAN | ( | bool | _createToken | ) |
Definition at line 2595 of file CSharpLexer.cs.
void Parser.CSharpLexer.mMINUS | ( | bool | _createToken | ) |
Definition at line 2455 of file CSharpLexer.cs.
void Parser.CSharpLexer.mMINUS_ASSIGN | ( | bool | _createToken | ) |
Definition at line 2791 of file CSharpLexer.cs.
void Parser.CSharpLexer.mML_COMMENT | ( | bool | _createToken | ) |
Definition at line 1076 of file CSharpLexer.cs.
void Parser.CSharpLexer.mMOD | ( | bool | _createToken | ) |
Definition at line 2497 of file CSharpLexer.cs.
void Parser.CSharpLexer.mMOD_ASSIGN | ( | bool | _createToken | ) |
Definition at line 2833 of file CSharpLexer.cs.
void Parser.CSharpLexer.mNEWLINE | ( | bool | _createToken | ) |
Definition at line 799 of file CSharpLexer.cs.
|
protected |
Definition at line 1045 of file CSharpLexer.cs.
void Parser.CSharpLexer.mNOT_EQUAL | ( | bool | _createToken | ) |
Definition at line 2735 of file CSharpLexer.cs.
|
protected |
Definition at line 2983 of file CSharpLexer.cs.
void Parser.CSharpLexer.mOPEN_BRACK | ( | bool | _createToken | ) |
Definition at line 2343 of file CSharpLexer.cs.
void Parser.CSharpLexer.mOPEN_CURLY | ( | bool | _createToken | ) |
Definition at line 2315 of file CSharpLexer.cs.
void Parser.CSharpLexer.mOPEN_PAREN | ( | bool | _createToken | ) |
Definition at line 2371 of file CSharpLexer.cs.
void Parser.CSharpLexer.mPLUS | ( | bool | _createToken | ) |
Definition at line 2441 of file CSharpLexer.cs.
void Parser.CSharpLexer.mPLUS_ASSIGN | ( | bool | _createToken | ) |
Definition at line 2777 of file CSharpLexer.cs.
|
protected |
Definition at line 916 of file CSharpLexer.cs.
void Parser.CSharpLexer.mQUESTION | ( | bool | _createToken | ) |
Definition at line 2623 of file CSharpLexer.cs.
void Parser.CSharpLexer.mQUOTE | ( | bool | _createToken | ) |
Definition at line 2931 of file CSharpLexer.cs.
void Parser.CSharpLexer.mSEMI | ( | bool | _createToken | ) |
Definition at line 2427 of file CSharpLexer.cs.
void Parser.CSharpLexer.mSHIFTL | ( | bool | _createToken | ) |
Definition at line 2693 of file CSharpLexer.cs.
void Parser.CSharpLexer.mSHIFTL_ASSIGN | ( | bool | _createToken | ) |
Definition at line 2889 of file CSharpLexer.cs.
void Parser.CSharpLexer.mSHIFTR | ( | bool | _createToken | ) |
Definition at line 2707 of file CSharpLexer.cs.
void Parser.CSharpLexer.mSHIFTR_ASSIGN | ( | bool | _createToken | ) |
Definition at line 2903 of file CSharpLexer.cs.
void Parser.CSharpLexer.mSL_COMMENT | ( | bool | _createToken | ) |
Definition at line 2945 of file CSharpLexer.cs.
void Parser.CSharpLexer.mSTAR | ( | bool | _createToken | ) |
Definition at line 2469 of file CSharpLexer.cs.
void Parser.CSharpLexer.mSTAR_ASSIGN | ( | bool | _createToken | ) |
Definition at line 2805 of file CSharpLexer.cs.
void Parser.CSharpLexer.mSTRING_LITERAL | ( | bool | _createToken | ) |
Definition at line 2280 of file CSharpLexer.cs.
|
protected |
Definition at line 10109 of file CSharpLexer.cs.
|
protected |
Definition at line 5081 of file CSharpLexer.cs.
|
protected |
Definition at line 7221 of file CSharpLexer.cs.
|
protected |
Definition at line 7348 of file CSharpLexer.cs.
|
protected |
Definition at line 7146 of file CSharpLexer.cs.
|
protected |
Definition at line 3058 of file CSharpLexer.cs.
|
protected |
Definition at line 9834 of file CSharpLexer.cs.
|
protected |
Definition at line 9239 of file CSharpLexer.cs.
|
protected |
Definition at line 9020 of file CSharpLexer.cs.
|
protected |
Definition at line 8963 of file CSharpLexer.cs.
|
protected |
Definition at line 9182 of file CSharpLexer.cs.
|
protected |
Definition at line 2999 of file CSharpLexer.cs.
|
protected |
Definition at line 1268 of file CSharpLexer.cs.
void Parser.CSharpLexer.mWHITESPACE | ( | bool | _createToken | ) |
Definition at line 843 of file CSharpLexer.cs.
override IToken Parser.CSharpLexer.nextToken | ( | ) |
Definition at line 508 of file CSharpLexer.cs.
override void Parser.CSharpLexer.setFilename | ( | string | f | ) |
Update _fileinfo attribute whenever filename changes.
Definition at line 252 of file CSharpLexer.cs.
const int Parser.CSharpLexer.ABSTRACT = 55 |
Definition at line 93 of file CSharpLexer.cs.
const int Parser.CSharpLexer.AS = 56 |
Definition at line 94 of file CSharpLexer.cs.
const int Parser.CSharpLexer.ASSIGN = 170 |
Definition at line 208 of file CSharpLexer.cs.
const int Parser.CSharpLexer.BASE = 57 |
Definition at line 95 of file CSharpLexer.cs.
const int Parser.CSharpLexer.BIN_AND = 166 |
Definition at line 204 of file CSharpLexer.cs.
const int Parser.CSharpLexer.BIN_AND_ASSIGN = 185 |
Definition at line 223 of file CSharpLexer.cs.
const int Parser.CSharpLexer.BIN_NOT = 169 |
Definition at line 207 of file CSharpLexer.cs.
const int Parser.CSharpLexer.BIN_OR = 167 |
Definition at line 205 of file CSharpLexer.cs.
const int Parser.CSharpLexer.BIN_OR_ASSIGN = 186 |
Definition at line 224 of file CSharpLexer.cs.
const int Parser.CSharpLexer.BIN_XOR = 168 |
Definition at line 206 of file CSharpLexer.cs.
const int Parser.CSharpLexer.BIN_XOR_ASSIGN = 187 |
Definition at line 225 of file CSharpLexer.cs.
const int Parser.CSharpLexer.BOOL = 58 |
Definition at line 96 of file CSharpLexer.cs.
const int Parser.CSharpLexer.BREAK = 59 |
Definition at line 97 of file CSharpLexer.cs.
const int Parser.CSharpLexer.BYTE = 60 |
Definition at line 98 of file CSharpLexer.cs.
const int Parser.CSharpLexer.CASE = 61 |
Definition at line 99 of file CSharpLexer.cs.
const int Parser.CSharpLexer.CATCH = 62 |
Definition at line 100 of file CSharpLexer.cs.
const int Parser.CSharpLexer.CHAR = 63 |
Definition at line 101 of file CSharpLexer.cs.
const int Parser.CSharpLexer.CHAR_LITERAL = 151 |
Definition at line 189 of file CSharpLexer.cs.
const int Parser.CSharpLexer.CHECKED = 64 |
Definition at line 102 of file CSharpLexer.cs.
const int Parser.CSharpLexer.CLASS = 65 |
Definition at line 103 of file CSharpLexer.cs.
const int Parser.CSharpLexer.CLOSE_BRACK = 157 |
Definition at line 195 of file CSharpLexer.cs.
const int Parser.CSharpLexer.CLOSE_CURLY = 155 |
Definition at line 193 of file CSharpLexer.cs.
const int Parser.CSharpLexer.CLOSE_PAREN = 37 |
Definition at line 75 of file CSharpLexer.cs.
const int Parser.CSharpLexer.COLON = 159 |
Definition at line 197 of file CSharpLexer.cs.
const int Parser.CSharpLexer.COMBINING_CHARACTER = 53 |
Definition at line 91 of file CSharpLexer.cs.
const int Parser.CSharpLexer.COMMA = 158 |
Definition at line 196 of file CSharpLexer.cs.
const int Parser.CSharpLexer.CONNECTING_CHARACTER = 52 |
Definition at line 90 of file CSharpLexer.cs.
const int Parser.CSharpLexer.CONST = 66 |
Definition at line 104 of file CSharpLexer.cs.
const int Parser.CSharpLexer.CONTINUE = 67 |
Definition at line 105 of file CSharpLexer.cs.
const int Parser.CSharpLexer.DEC = 175 |
Definition at line 213 of file CSharpLexer.cs.
const int Parser.CSharpLexer.DECIMAL = 68 |
Definition at line 106 of file CSharpLexer.cs.
const int Parser.CSharpLexer.DECIMAL_DIGIT = 48 |
Definition at line 86 of file CSharpLexer.cs.
const int Parser.CSharpLexer.DECIMAL_DIGIT_CHARACTER = 51 |
Definition at line 89 of file CSharpLexer.cs.
const int Parser.CSharpLexer.DECIMAL_LITERAL = 134 |
Definition at line 172 of file CSharpLexer.cs.
const int Parser.CSharpLexer.DEFAULT = 18 |
Definition at line 56 of file CSharpLexer.cs.
const int Parser.CSharpLexer.DELEGATE = 69 |
Definition at line 107 of file CSharpLexer.cs.
const int Parser.CSharpLexer.DEREF = 190 |
Definition at line 228 of file CSharpLexer.cs.
const int Parser.CSharpLexer.DIV = 164 |
Definition at line 202 of file CSharpLexer.cs.
const int Parser.CSharpLexer.DIV_ASSIGN = 183 |
Definition at line 221 of file CSharpLexer.cs.
const int Parser.CSharpLexer.DO = 70 |
Definition at line 108 of file CSharpLexer.cs.
const int Parser.CSharpLexer.DOT = 130 |
Definition at line 168 of file CSharpLexer.cs.
const int Parser.CSharpLexer.DOUBLE = 71 |
Definition at line 109 of file CSharpLexer.cs.
const int Parser.CSharpLexer.DOUBLE_LITERAL = 136 |
Definition at line 174 of file CSharpLexer.cs.
const int Parser.CSharpLexer.ELSE = 72 |
Definition at line 110 of file CSharpLexer.cs.
const int Parser.CSharpLexer.ENUM = 73 |
Definition at line 111 of file CSharpLexer.cs.
const int Parser.CSharpLexer.EOF = 1 |
Definition at line 40 of file CSharpLexer.cs.
const int Parser.CSharpLexer.EQUAL = 41 |
Definition at line 79 of file CSharpLexer.cs.
const int Parser.CSharpLexer.ESCAPED_LITERAL = 153 |
Definition at line 191 of file CSharpLexer.cs.
const int Parser.CSharpLexer.EVENT = 74 |
Definition at line 112 of file CSharpLexer.cs.
const int Parser.CSharpLexer.EXPLICIT = 75 |
Definition at line 113 of file CSharpLexer.cs.
const int Parser.CSharpLexer.EXTERN = 76 |
Definition at line 114 of file CSharpLexer.cs.
const int Parser.CSharpLexer.FALSE = 17 |
Definition at line 55 of file CSharpLexer.cs.
const int Parser.CSharpLexer.FINALLY = 77 |
Definition at line 115 of file CSharpLexer.cs.
const int Parser.CSharpLexer.FIXED = 78 |
Definition at line 116 of file CSharpLexer.cs.
const int Parser.CSharpLexer.FLOAT = 79 |
Definition at line 117 of file CSharpLexer.cs.
const int Parser.CSharpLexer.FLOAT_LITERAL = 135 |
Definition at line 173 of file CSharpLexer.cs.
const int Parser.CSharpLexer.FOR = 80 |
Definition at line 118 of file CSharpLexer.cs.
const int Parser.CSharpLexer.FOREACH = 81 |
Definition at line 119 of file CSharpLexer.cs.
const int Parser.CSharpLexer.FORMATTING_CHARACTER = 54 |
Definition at line 92 of file CSharpLexer.cs.
const int Parser.CSharpLexer.GOTO = 82 |
Definition at line 120 of file CSharpLexer.cs.
const int Parser.CSharpLexer.GTE = 179 |
Definition at line 217 of file CSharpLexer.cs.
const int Parser.CSharpLexer.GTHAN = 172 |
Definition at line 210 of file CSharpLexer.cs.
const int Parser.CSharpLexer.HEX_DIGIT = 49 |
Definition at line 87 of file CSharpLexer.cs.
const int Parser.CSharpLexer.IDENTIFIER = 149 |
Definition at line 187 of file CSharpLexer.cs.
const int Parser.CSharpLexer.IF = 83 |
Definition at line 121 of file CSharpLexer.cs.
const int Parser.CSharpLexer.IMPLICIT = 84 |
Definition at line 122 of file CSharpLexer.cs.
const int Parser.CSharpLexer.IN = 85 |
Definition at line 123 of file CSharpLexer.cs.
const int Parser.CSharpLexer.INC = 174 |
Definition at line 212 of file CSharpLexer.cs.
const int Parser.CSharpLexer.INT = 86 |
Definition at line 124 of file CSharpLexer.cs.
const int Parser.CSharpLexer.INT_LITERAL = 150 |
Definition at line 188 of file CSharpLexer.cs.
const int Parser.CSharpLexer.INTERFACE = 87 |
Definition at line 125 of file CSharpLexer.cs.
const int Parser.CSharpLexer.INTERNAL = 88 |
Definition at line 126 of file CSharpLexer.cs.
const int Parser.CSharpLexer.IS = 89 |
Definition at line 127 of file CSharpLexer.cs.
const int Parser.CSharpLexer.LETTER_CHARACTER = 50 |
Definition at line 88 of file CSharpLexer.cs.
const int Parser.CSharpLexer.LITERAL_add = 137 |
Definition at line 175 of file CSharpLexer.cs.
const int Parser.CSharpLexer.LITERAL_assembly = 141 |
Definition at line 179 of file CSharpLexer.cs.
const int Parser.CSharpLexer.LITERAL_field = 142 |
Definition at line 180 of file CSharpLexer.cs.
const int Parser.CSharpLexer.LITERAL_get = 139 |
Definition at line 177 of file CSharpLexer.cs.
const int Parser.CSharpLexer.LITERAL_method = 143 |
Definition at line 181 of file CSharpLexer.cs.
const int Parser.CSharpLexer.LITERAL_module = 144 |
Definition at line 182 of file CSharpLexer.cs.
const int Parser.CSharpLexer.LITERAL_param = 145 |
Definition at line 183 of file CSharpLexer.cs.
const int Parser.CSharpLexer.LITERAL_property = 146 |
Definition at line 184 of file CSharpLexer.cs.
const int Parser.CSharpLexer.LITERAL_remove = 138 |
Definition at line 176 of file CSharpLexer.cs.
const int Parser.CSharpLexer.LITERAL_set = 140 |
Definition at line 178 of file CSharpLexer.cs.
const int Parser.CSharpLexer.LITERAL_type = 147 |
Definition at line 185 of file CSharpLexer.cs.
const int Parser.CSharpLexer.LOCK = 90 |
Definition at line 128 of file CSharpLexer.cs.
const int Parser.CSharpLexer.LOG_AND = 39 |
Definition at line 77 of file CSharpLexer.cs.
const int Parser.CSharpLexer.LOG_NOT = 38 |
Definition at line 76 of file CSharpLexer.cs.
const int Parser.CSharpLexer.LOG_OR = 40 |
Definition at line 78 of file CSharpLexer.cs.
const int Parser.CSharpLexer.LONG = 91 |
Definition at line 129 of file CSharpLexer.cs.
const int Parser.CSharpLexer.LONG_LITERAL = 132 |
Definition at line 170 of file CSharpLexer.cs.
const int Parser.CSharpLexer.LTE = 178 |
Definition at line 216 of file CSharpLexer.cs.
const int Parser.CSharpLexer.LTHAN = 171 |
Definition at line 209 of file CSharpLexer.cs.
const int Parser.CSharpLexer.MINUS = 162 |
Definition at line 200 of file CSharpLexer.cs.
const int Parser.CSharpLexer.MINUS_ASSIGN = 181 |
Definition at line 219 of file CSharpLexer.cs.
const int Parser.CSharpLexer.ML_COMMENT = 148 |
Definition at line 186 of file CSharpLexer.cs.
const int Parser.CSharpLexer.MOD = 165 |
Definition at line 203 of file CSharpLexer.cs.
const int Parser.CSharpLexer.MOD_ASSIGN = 184 |
Definition at line 222 of file CSharpLexer.cs.
const int Parser.CSharpLexer.NAMESPACE = 92 |
Definition at line 130 of file CSharpLexer.cs.
const int Parser.CSharpLexer.NEW = 93 |
Definition at line 131 of file CSharpLexer.cs.
const int Parser.CSharpLexer.NEWLINE = 44 |
Definition at line 82 of file CSharpLexer.cs.
const int Parser.CSharpLexer.NON_NEWLINE_WHITESPACE = 46 |
Definition at line 84 of file CSharpLexer.cs.
const int Parser.CSharpLexer.NOT_EQUAL = 42 |
Definition at line 80 of file CSharpLexer.cs.
const int Parser.CSharpLexer.NOT_NEWLINE = 45 |
Definition at line 83 of file CSharpLexer.cs.
const int Parser.CSharpLexer.NULL = 94 |
Definition at line 132 of file CSharpLexer.cs.
const int Parser.CSharpLexer.NULL_TREE_LOOKAHEAD = 3 |
Definition at line 41 of file CSharpLexer.cs.
const int Parser.CSharpLexer.OBJECT = 95 |
Definition at line 133 of file CSharpLexer.cs.
const int Parser.CSharpLexer.OPEN_BRACK = 156 |
Definition at line 194 of file CSharpLexer.cs.
const int Parser.CSharpLexer.OPEN_CURLY = 154 |
Definition at line 192 of file CSharpLexer.cs.
const int Parser.CSharpLexer.OPEN_PAREN = 36 |
Definition at line 74 of file CSharpLexer.cs.
const int Parser.CSharpLexer.OPERATOR = 96 |
Definition at line 134 of file CSharpLexer.cs.
const int Parser.CSharpLexer.OUT = 97 |
Definition at line 135 of file CSharpLexer.cs.
const int Parser.CSharpLexer.OVERRIDE = 98 |
Definition at line 136 of file CSharpLexer.cs.
const int Parser.CSharpLexer.PARAMS = 99 |
Definition at line 137 of file CSharpLexer.cs.
const int Parser.CSharpLexer.PLUS = 161 |
Definition at line 199 of file CSharpLexer.cs.
const int Parser.CSharpLexer.PLUS_ASSIGN = 180 |
Definition at line 218 of file CSharpLexer.cs.
const int Parser.CSharpLexer.PP_COND_ELIF = 22 |
Definition at line 60 of file CSharpLexer.cs.
const int Parser.CSharpLexer.PP_COND_ELSE = 23 |
Definition at line 61 of file CSharpLexer.cs.
const int Parser.CSharpLexer.PP_COND_ENDIF = 24 |
Definition at line 62 of file CSharpLexer.cs.
const int Parser.CSharpLexer.PP_COND_IF = 21 |
Definition at line 59 of file CSharpLexer.cs.
const int Parser.CSharpLexer.PP_DEFINE = 19 |
Definition at line 57 of file CSharpLexer.cs.
const int Parser.CSharpLexer.PP_DIRECTIVE = 191 |
Definition at line 229 of file CSharpLexer.cs.
const int Parser.CSharpLexer.PP_ENDREGION = 29 |
Definition at line 67 of file CSharpLexer.cs.
const int Parser.CSharpLexer.PP_ERROR = 26 |
Definition at line 64 of file CSharpLexer.cs.
const int Parser.CSharpLexer.PP_FILENAME = 30 |
Definition at line 68 of file CSharpLexer.cs.
const int Parser.CSharpLexer.PP_IDENT = 31 |
Definition at line 69 of file CSharpLexer.cs.
const int Parser.CSharpLexer.PP_LINE = 25 |
Definition at line 63 of file CSharpLexer.cs.
const int Parser.CSharpLexer.PP_NUMBER = 33 |
Definition at line 71 of file CSharpLexer.cs.
const int Parser.CSharpLexer.PP_REGION = 28 |
Definition at line 66 of file CSharpLexer.cs.
const int Parser.CSharpLexer.PP_STRING = 32 |
Definition at line 70 of file CSharpLexer.cs.
const int Parser.CSharpLexer.PP_UNDEFINE = 20 |
Definition at line 58 of file CSharpLexer.cs.
const int Parser.CSharpLexer.PP_WARNING = 27 |
Definition at line 65 of file CSharpLexer.cs.
const int Parser.CSharpLexer.PRIVATE = 100 |
Definition at line 138 of file CSharpLexer.cs.
const int Parser.CSharpLexer.PROTECTED = 101 |
Definition at line 139 of file CSharpLexer.cs.
const int Parser.CSharpLexer.PUBLIC = 102 |
Definition at line 140 of file CSharpLexer.cs.
const int Parser.CSharpLexer.QUESTION = 173 |
Definition at line 211 of file CSharpLexer.cs.
const int Parser.CSharpLexer.QUOTE = 35 |
Definition at line 73 of file CSharpLexer.cs.
const int Parser.CSharpLexer.READONLY = 103 |
Definition at line 141 of file CSharpLexer.cs.
const int Parser.CSharpLexer.REF = 104 |
Definition at line 142 of file CSharpLexer.cs.
const int Parser.CSharpLexer.RETURN = 105 |
Definition at line 143 of file CSharpLexer.cs.
const int Parser.CSharpLexer.SBYTE = 106 |
Definition at line 144 of file CSharpLexer.cs.
const int Parser.CSharpLexer.SEALED = 107 |
Definition at line 145 of file CSharpLexer.cs.
const int Parser.CSharpLexer.SEMI = 160 |
Definition at line 198 of file CSharpLexer.cs.
const int Parser.CSharpLexer.SHIFTL = 176 |
Definition at line 214 of file CSharpLexer.cs.
const int Parser.CSharpLexer.SHIFTL_ASSIGN = 188 |
Definition at line 226 of file CSharpLexer.cs.
const int Parser.CSharpLexer.SHIFTR = 177 |
Definition at line 215 of file CSharpLexer.cs.
const int Parser.CSharpLexer.SHIFTR_ASSIGN = 189 |
Definition at line 227 of file CSharpLexer.cs.
const int Parser.CSharpLexer.SHORT = 108 |
Definition at line 146 of file CSharpLexer.cs.
const int Parser.CSharpLexer.SIZEOF = 109 |
Definition at line 147 of file CSharpLexer.cs.
const int Parser.CSharpLexer.SL_COMMENT = 43 |
Definition at line 81 of file CSharpLexer.cs.
const int Parser.CSharpLexer.STACKALLOC = 110 |
Definition at line 148 of file CSharpLexer.cs.
const int Parser.CSharpLexer.STAR = 163 |
Definition at line 201 of file CSharpLexer.cs.
const int Parser.CSharpLexer.STAR_ASSIGN = 182 |
Definition at line 220 of file CSharpLexer.cs.
const int Parser.CSharpLexer.STATIC = 111 |
Definition at line 149 of file CSharpLexer.cs.
const int Parser.CSharpLexer.STRING = 112 |
Definition at line 150 of file CSharpLexer.cs.
const int Parser.CSharpLexer.STRING_LITERAL = 152 |
Definition at line 190 of file CSharpLexer.cs.
const int Parser.CSharpLexer.STRUCT = 113 |
Definition at line 151 of file CSharpLexer.cs.
const int Parser.CSharpLexer.SWITCH = 114 |
Definition at line 152 of file CSharpLexer.cs.
const int Parser.CSharpLexer.THIS = 115 |
Definition at line 153 of file CSharpLexer.cs.
const int Parser.CSharpLexer.THROW = 116 |
Definition at line 154 of file CSharpLexer.cs.
Definition at line 10190 of file CSharpLexer.cs.
Definition at line 10834 of file CSharpLexer.cs.
Definition at line 10853 of file CSharpLexer.cs.
Definition at line 10894 of file CSharpLexer.cs.
Definition at line 10939 of file CSharpLexer.cs.
Definition at line 10951 of file CSharpLexer.cs.
Definition at line 10985 of file CSharpLexer.cs.
Definition at line 11109 of file CSharpLexer.cs.
Definition at line 11123 of file CSharpLexer.cs.
Definition at line 11194 of file CSharpLexer.cs.
Definition at line 11231 of file CSharpLexer.cs.
Definition at line 10341 of file CSharpLexer.cs.
Definition at line 11240 of file CSharpLexer.cs.
Definition at line 11249 of file CSharpLexer.cs.
Definition at line 11262 of file CSharpLexer.cs.
Definition at line 11271 of file CSharpLexer.cs.
Definition at line 11284 of file CSharpLexer.cs.
Definition at line 10358 of file CSharpLexer.cs.
Definition at line 10375 of file CSharpLexer.cs.
Definition at line 10387 of file CSharpLexer.cs.
Definition at line 10397 of file CSharpLexer.cs.
Definition at line 10548 of file CSharpLexer.cs.
Definition at line 10699 of file CSharpLexer.cs.
Definition at line 10743 of file CSharpLexer.cs.
Definition at line 10763 of file CSharpLexer.cs.
const int Parser.CSharpLexer.TRUE = 16 |
Definition at line 54 of file CSharpLexer.cs.
const int Parser.CSharpLexer.TRY = 117 |
Definition at line 155 of file CSharpLexer.cs.
const int Parser.CSharpLexer.TYPEOF = 118 |
Definition at line 156 of file CSharpLexer.cs.
const int Parser.CSharpLexer.UINT = 119 |
Definition at line 157 of file CSharpLexer.cs.
const int Parser.CSharpLexer.UINT_LITERAL = 131 |
Definition at line 169 of file CSharpLexer.cs.
const int Parser.CSharpLexer.ULONG = 120 |
Definition at line 158 of file CSharpLexer.cs.
const int Parser.CSharpLexer.ULONG_LITERAL = 133 |
Definition at line 171 of file CSharpLexer.cs.
const int Parser.CSharpLexer.UNCHECKED = 121 |
Definition at line 159 of file CSharpLexer.cs.
const int Parser.CSharpLexer.UNICODE_CLASS_Cf = 15 |
Definition at line 53 of file CSharpLexer.cs.
const int Parser.CSharpLexer.UNICODE_CLASS_Ll = 7 |
Definition at line 45 of file CSharpLexer.cs.
const int Parser.CSharpLexer.UNICODE_CLASS_Lm = 10 |
Definition at line 48 of file CSharpLexer.cs.
const int Parser.CSharpLexer.UNICODE_CLASS_Lo = 9 |
Definition at line 47 of file CSharpLexer.cs.
const int Parser.CSharpLexer.UNICODE_CLASS_Lt = 5 |
Definition at line 43 of file CSharpLexer.cs.
const int Parser.CSharpLexer.UNICODE_CLASS_Lu = 8 |
Definition at line 46 of file CSharpLexer.cs.
const int Parser.CSharpLexer.UNICODE_CLASS_Mc = 12 |
Definition at line 50 of file CSharpLexer.cs.
const int Parser.CSharpLexer.UNICODE_CLASS_Mn = 11 |
Definition at line 49 of file CSharpLexer.cs.
const int Parser.CSharpLexer.UNICODE_CLASS_Nd = 13 |
Definition at line 51 of file CSharpLexer.cs.
const int Parser.CSharpLexer.UNICODE_CLASS_Nl = 4 |
Definition at line 42 of file CSharpLexer.cs.
const int Parser.CSharpLexer.UNICODE_CLASS_Pc = 14 |
Definition at line 52 of file CSharpLexer.cs.
const int Parser.CSharpLexer.UNICODE_CLASS_Zs = 6 |
Definition at line 44 of file CSharpLexer.cs.
const int Parser.CSharpLexer.UNICODE_ESCAPE_SEQUENCE = 47 |
Definition at line 85 of file CSharpLexer.cs.
const int Parser.CSharpLexer.UNSAFE = 122 |
Definition at line 160 of file CSharpLexer.cs.
const int Parser.CSharpLexer.USHORT = 123 |
Definition at line 161 of file CSharpLexer.cs.
const int Parser.CSharpLexer.USING = 124 |
Definition at line 162 of file CSharpLexer.cs.
const int Parser.CSharpLexer.VAR = 129 |
Definition at line 167 of file CSharpLexer.cs.
const int Parser.CSharpLexer.VIRTUAL = 125 |
Definition at line 163 of file CSharpLexer.cs.
const int Parser.CSharpLexer.VOID = 126 |
Definition at line 164 of file CSharpLexer.cs.
const int Parser.CSharpLexer.VOLATILE = 127 |
Definition at line 165 of file CSharpLexer.cs.
const int Parser.CSharpLexer.WHILE = 128 |
Definition at line 166 of file CSharpLexer.cs.
const int Parser.CSharpLexer.WHITESPACE = 34 |
Definition at line 72 of file CSharpLexer.cs.
|
getset |
A for switching between this Lexer and the Preprocessor Lexer.
Definition at line 242 of file CSharpLexer.cs.