fix: removed unnecessary "interface" initialization on test suite

This commit is contained in:
Camilo Roca 2020-02-16 19:15:07 +01:00
parent 577a9b82bc
commit a3d2ca7ef5
2 changed files with 0 additions and 2 deletions

View File

@ -627,7 +627,6 @@ public class BaseNodeTest implements RuntimeTestSupport {
+ "var <visitorName> = require('./<visitorName>').<visitorName>;\n"
+ "\n"
+ "function TreeShapeListener() {\n"
+ " antlr4.tree.ParseTreeListener.call(this);\n"
+ " return this;\n"
+ "}\n"
+ "\n"

View File

@ -66,7 +66,6 @@ var antlr4 = require('antlr4/index');
// This class defines a complete listener for a parse tree produced by <file.parserName>.
function <file.grammarName>Listener() {
antlr4.tree.ParseTreeListener.call(this);
return this;
}