1 | import { TextRange } from './TextRange';
|
2 | import { Token, TokenKind } from './Token';
|
3 | export declare class Tokenizer {
|
4 | private static readonly _commonMarkPunctuationCharacters;
|
5 | private static readonly _wordCharacters;
|
6 | private static _charCodeMap;
|
7 | private static _punctuationTokens;
|
8 | |
9 |
|
10 |
|
11 |
|
12 | static readTokens(lines: TextRange[]): Token[];
|
13 | |
14 |
|
15 |
|
16 |
|
17 | static isPunctuation(tokenKind: TokenKind): boolean;
|
18 | private static _pushTokensForLine;
|
19 | |
20 |
|
21 |
|
22 | private static _isMultiCharacterToken;
|
23 | private static _ensureInitialized;
|
24 | }
|
25 |
|
\ | No newline at end of file |