buntis
Version:
A 100% compliant, self-hosted typescript parser that emits an ESTree-compatible abstract syntax tree
6 lines • 455 B
TypeScript
import { Token } from '../token';
import { ParserState, Context } from '../common';
export declare function scanNumber(parser: ParserState, context: Context, nonOctalDecimalInteger: 0 | 1, isFloat: 0 | 1): Token;
export declare function scanDecimalDigits(parser: ParserState, context: Context, char: number): any;
export declare function scanLeadingZero(parser: ParserState, context: Context, char: number): any;
//# sourceMappingURL=numeric.d.ts.map