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