fix #1058
This commit is contained in:
parent
01e6923dbd
commit
c651c83a8b
|
@ -95,6 +95,13 @@ ParseTreeVisitor.prototype.visit = function(ctx) {
|
|||
}
|
||||
};
|
||||
|
||||
ParseTreeVisitor.prototype.visitTerminal = function(node) {
|
||||
};
|
||||
|
||||
ParseTreeVisitor.prototype.visitErrorNode = function(node) {
|
||||
};
|
||||
|
||||
|
||||
var visitAtom = function(visitor, ctx) {
|
||||
if (ctx.parser === undefined) { //is terminal
|
||||
return;
|
||||
|
|
Loading…
Reference in New Issue