(input, options)
| 31 | } |
| 32 | |
| 33 | export function parse(input, options) { |
| 34 | let ast = parseWithoutProcessing(input, options); |
| 35 | let strip = new WhitespaceControl(options); |
| 36 | |
| 37 | return strip.accept(ast); |
| 38 | } |
| 39 | |
| 40 | function validateInputAst(ast) { |
| 41 | validateAstNode(ast); |
nothing calls this directly
no test coverage detected