MCPcopy Create free account
hub / github.com/microsoft/SandDance / ASTNode

Function ASTNode

docs/app/js/sanddance-app.js:143348–143350  ·  view source on GitHub ↗
(type)

Source from the content-addressed store, hash-verified

143346const ObjectExpression = "ObjectExpression";
143347const UnaryExpression = "UnaryExpression";
143348function ASTNode(type) {
143349 this.type = type;
143350}
143351ASTNode.prototype.visit = function(visitor) {
143352 let c, i, n;
143353 if (visitor(this)) return 1;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected