| 27 | }); |
| 28 | |
| 29 | interface FastPathType { |
| 30 | stack: any[]; |
| 31 | copy(): any; |
| 32 | getName(): any; |
| 33 | getValue(): any; |
| 34 | valueIsDuplicate(): any; |
| 35 | getNode(count?: number): any; |
| 36 | getParentNode(count?: number): any; |
| 37 | getRootValue(): any; |
| 38 | call(callback: any, ...names: any[]): any; |
| 39 | each(callback: any, ...names: any[]): any; |
| 40 | map(callback: any, ...names: any[]): any; |
| 41 | hasParens(): any; |
| 42 | getPrevToken(node: any): any; |
| 43 | getNextToken(node: any): any; |
| 44 | needsParens(assumeExpressionContext?: boolean): any; |
| 45 | canBeFirstInStatement(): any; |
| 46 | firstInStatement(): any; |
| 47 | } |
| 48 | |
| 49 | interface FastPathConstructor { |
| 50 | new (value: any): FastPathType; |
no outgoing calls
no test coverage detected
searching dependent graphs…