File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,23 @@ export class AcornJsxParser extends acorn.Parser {
2626 tokContexts : typeof tokContexts
2727 } ;
2828
29+ jsx_readToken ( ) : string ;
30+ jsx_readNewLine ( normalizeCRLF : boolean ) : void ;
2931 jsx_readString ( quote : number ) : void ;
32+ jsx_readEntity ( ) : string ;
33+ jsx_readWord ( ) : void ;
34+ jsx_parseIdentifier ( ) : acorn . Node ;
35+ jsx_parseNamespacedName ( ) : acorn . Node ;
36+ jsx_parseElementName ( ) : acorn . Node | string ;
37+ jsx_parseAttributeValue ( ) : acorn . Node ;
38+ jsx_parseEmptyExpression ( ) : acorn . Node ;
39+ jsx_parseExpressionContainer ( ) : acorn . Node ;
40+ jsx_parseAttribute ( ) : acorn . Node ;
41+ jsx_parseOpeningElementAt ( startPos : number , startLoc ?: acorn . SourceLocation ) : acorn . Node ;
42+ jsx_parseClosingElementAt ( startPos : number , startLoc ?: acorn . SourceLocation ) : acorn . Node ;
43+ jsx_parseElementAt ( startPos : number , startLoc ?: acorn . SourceLocation ) : acorn . Node ;
44+ jsx_parseText ( ) : acorn . Node ;
45+ jsx_parseElement ( ) : acorn . Node ;
3046}
3147
3248export as namespace jsx ;
You can’t perform that action at this time.
0 commit comments