(input, pos, options)
| 4744 | return Parser.parse(input, options); |
| 4745 | } |
| 4746 | function parseExpressionAt2(input, pos, options) { |
| 4747 | return Parser.parseExpressionAt(input, pos, options); |
| 4748 | } |
| 4749 | function flatten(nodes, target = []) { |
| 4750 | for (let i = 0; i < nodes.length; i += 1) { |
| 4751 | const node2 = nodes[i]; |
no outgoing calls
no test coverage detected