(elements)
| 144007 | index = pos; |
| 144008 | } |
| 144009 | function finishArrayExpression(elements) { |
| 144010 | const node = new ASTNode(SyntaxArrayExpression); |
| 144011 | node.elements = elements; |
| 144012 | return node; |
| 144013 | } |
| 144014 | function finishBinaryExpression(operator, left, right) { |
| 144015 | const node = new ASTNode(operator === "||" || operator === "&&" ? SyntaxLogicalExpression : SyntaxBinaryExpression); |
| 144016 | node.operator = operator; |
no outgoing calls
no test coverage detected