(type)
| 143346 | const ObjectExpression = "ObjectExpression"; |
| 143347 | const UnaryExpression = "UnaryExpression"; |
| 143348 | function ASTNode(type) { |
| 143349 | this.type = type; |
| 143350 | } |
| 143351 | ASTNode.prototype.visit = function(visitor) { |
| 143352 | let c, i, n; |
| 143353 | if (visitor(this)) return 1; |
nothing calls this directly
no outgoing calls
no test coverage detected