Property | Type | Description | |
---|---|---|---|
IsFistNonWs | bool | ||
IsInChar | bool | ||
IsInMultiLineComment | bool | ||
IsInPreprocessorDirective | bool | ||
IsInSingleComment | bool | ||
IsInString | bool | ||
IsInVerbatimString | bool |
Method | Description | |
---|---|---|
MiniLexer ( string text ) : System | ||
Parse ( Func |
Parsing all text and calling act delegate on almost every character. Skipping begining of comments, begining of verbatim strings and escaped characters.
|
|
Parse ( int start, int length, Func |
Parsing text from start to start+length and calling act delegate on almost every character. Skipping begining of comments, begining of verbatim strings and escaped characters.
|
public Parse ( Func |
||
act | Func |
Return true to abort parsing. Integer argument represent offset in text. |
return | bool |
public Parse ( int start, int length, Func |
||
start | int | Start offset. |
length | int | Lenght to parse. |
act | Func |
Return true to abort parsing. Integer argument represent offset in text. |
return | bool |