(code: string, options, delegate)
| 80 | } |
| 81 | |
| 82 | export function parseModule(code: string, options, delegate) { |
| 83 | const parsingOptions = options || {}; |
| 84 | parsingOptions.sourceType = 'module'; |
| 85 | return parse(code, parsingOptions, delegate); |
| 86 | } |
| 87 | |
| 88 | export function parseScript(code: string, options, delegate) { |
| 89 | const parsingOptions = options || {}; |
nothing calls this directly
no test coverage detected
searching dependent graphs…