UNPKG

1.85 kBTypeScriptView Raw
1import { ContextualKeyword } from "../tokenizer/keywords";
2import { StopState } from "../traverser/expression";
3export declare function flowParseTypeParameterDeclaration(): void;
4export declare function flowParseTypeAnnotation(): void;
5export declare function flowParseVariance(): void;
6export declare function flowParseFunctionBodyAndFinish(functionStart: number, isGenerator: boolean, allowExpressionBody: boolean | undefined, funcContextId: number): void;
7export declare function flowParseSubscript(startPos: number, noCalls: boolean, stopState: StopState): void;
8export declare function flowStartParseNewArguments(): void;
9export declare function flowTryParseStatement(): boolean;
10export declare function flowParseIdentifierStatement(contextualKeyword: ContextualKeyword): void;
11export declare function flowShouldParseExportDeclaration(): boolean;
12export declare function flowShouldDisallowExportDefaultSpecifier(): boolean;
13export declare function flowParseExportDeclaration(): void;
14export declare function flowShouldParseExportStar(): boolean;
15export declare function flowParseExportStar(): void;
16export declare function flowAfterParseClassSuper(hasSuper: boolean): void;
17export declare function flowStartParseObjPropValue(): void;
18export declare function flowParseAssignableListItemTypes(): void;
19export declare function flowStartParseImportSpecifiers(): void;
20export declare function flowParseImportSpecifier(): void;
21export declare function flowStartParseFunctionParams(): void;
22export declare function flowAfterParseVarHead(): void;
23export declare function flowStartParseAsyncArrowFromCallExpression(): void;
24export declare function flowParseMaybeAssign(noIn: boolean, isWithinParens: boolean): boolean;
25export declare function flowParseArrow(): boolean;
26export declare function flowParseSubscripts(startPos: number, noCalls?: boolean): void;