fix: removed unnecessary "interface" initialization on test suite
This commit is contained in:
parent
577a9b82bc
commit
a3d2ca7ef5
|
@ -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"
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue