(callee, args)
| 144019 | return node; |
| 144020 | } |
| 144021 | function finishCallExpression(callee, args) { |
| 144022 | const node = new ASTNode(SyntaxCallExpression); |
| 144023 | node.callee = callee; |
| 144024 | node.arguments = args; |
| 144025 | return node; |
| 144026 | } |
| 144027 | function finishConditionalExpression(test, consequent, alternate) { |
| 144028 | const node = new ASTNode(SyntaxConditionalExpression); |
| 144029 | node.test = test; |
no outgoing calls
no test coverage detected