UNPKG

624 BTypeScriptView Raw
1import { TokenType } from "../tokenizer/types";
2export declare function parseSpread(): void;
3export declare function parseRest(isBlockScope: boolean): void;
4export declare function parseBindingIdentifier(isBlockScope: boolean): void;
5export declare function markPriorBindingIdentifier(isBlockScope: boolean): void;
6export declare function parseBindingAtom(isBlockScope: boolean): void;
7export declare function parseBindingList(close: TokenType, isBlockScope: boolean, allowEmpty?: boolean, allowModifiers?: boolean): void;
8export declare function parseMaybeDefault(isBlockScope: boolean, leftAlreadyParsed?: boolean): void;