(kind, key, value)
| 144060 | return node; |
| 144061 | } |
| 144062 | function finishProperty(kind, key, value) { |
| 144063 | const node = new ASTNode(SyntaxProperty); |
| 144064 | node.key = key; |
| 144065 | node.value = value; |
| 144066 | node.kind = kind; |
| 144067 | return node; |
| 144068 | } |
| 144069 | function finishUnaryExpression(operator, argument) { |
| 144070 | const node = new ASTNode(SyntaxUnaryExpression); |
| 144071 | node.operator = operator; |
no outgoing calls
no test coverage detected