Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
yaml /
dist /
parse /
Delete
Unzip
Name
Size
Permission
Date
Action
cst-scalar.d.ts
3.45
KB
-rw-r--r--
2024-02-26 08:46
cst-scalar.js
9.15
KB
-rw-r--r--
2024-02-26 08:46
cst-stringify.d.ts
313
B
-rw-r--r--
2024-02-26 08:46
cst-stringify.js
1.76
KB
-rw-r--r--
2024-02-26 08:46
cst-visit.d.ts
2.22
KB
-rw-r--r--
2024-02-26 08:46
cst-visit.js
3.89
KB
-rw-r--r--
2024-02-26 08:46
cst.d.ts
3.36
KB
-rw-r--r--
2024-02-26 08:46
cst.js
3.17
KB
-rw-r--r--
2024-02-26 08:46
lexer.d.ts
2.86
KB
-rw-r--r--
2024-02-26 08:46
lexer.js
22.92
KB
-rw-r--r--
2024-02-26 08:46
line-counter.d.ts
733
B
-rw-r--r--
2024-02-26 08:46
line-counter.js
1.41
KB
-rw-r--r--
2024-02-26 08:46
parser.d.ts
2.5
KB
-rw-r--r--
2024-02-26 08:46
parser.js
33.71
KB
-rw-r--r--
2024-02-26 08:46
Save
Rename
/** * Splits an input string into lexical tokens, i.e. smaller strings that are * easily identifiable by `tokens.tokenType()`. * * Lexing starts always in a "stream" context. Incomplete input may be buffered * until a complete token can be emitted. * * In addition to slices of the original input, the following control characters * may also be emitted: * * - `\x02` (Start of Text): A document starts with the next token * - `\x18` (Cancel): Unexpected end of flow-mode (indicates an error) * - `\x1f` (Unit Separator): Next token is a scalar value * - `\u{FEFF}` (Byte order mark): Emitted separately outside documents */ export declare class Lexer { /** * Flag indicating whether the end of the current buffer marks the end of * all input */ private atEnd; /** * Explicit indent set in block scalar header, as an offset from the current * minimum indent, so e.g. set to 1 from a header `|2+`. Set to -1 if not * explicitly set. */ private blockScalarIndent; /** * Block scalars that include a + (keep) chomping indicator in their header * include trailing empty lines, which are otherwise excluded from the * scalar's contents. */ private blockScalarKeep; /** Current input */ private buffer; /** * Flag noting whether the map value indicator : can immediately follow this * node within a flow context. */ private flowKey; /** Count of surrounding flow collection levels. */ private flowLevel; /** * Minimum level of indentation required for next lines to be parsed as a * part of the current scalar value. */ private indentNext; /** Indentation level of the current line. */ private indentValue; /** Position of the next \n character. */ private lineEndPos; /** Stores the state of the lexer if reaching the end of incpomplete input */ private next; /** A pointer to `buffer`; the current position of the lexer. */ private pos; /** * Generate YAML tokens from the `source` string. If `incomplete`, * a part of the last line may be left as a buffer for the next call. * * @returns A generator of lexical tokens */ lex(source: string, incomplete?: boolean): Generator<string, void, unknown>; private atLineEnd; private charAt; private continueScalar; private getLine; private hasChars; private setNext; private peek; private parseNext; private parseStream; private parseLineStart; private parseBlockStart; private parseDocument; private parseFlowCollection; private parseQuotedScalar; private parseBlockScalarHeader; private parseBlockScalar; private parsePlainScalar; private pushCount; private pushToIndex; private pushIndicators; private pushTag; private pushNewline; private pushSpaces; private pushUntil; }