Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ use Antlr\\Antlr4\\Runtime\\Tree\\TerminalNode;
* which can be extended to create a listener which only needs to handle a subset
* of the available methods.
*/
class <file.grammarName>BaseListener implements <file.grammarName>Listener
abstract class <file.grammarName>BaseListener implements <file.grammarName>Listener
{
<file.listenerNames:{lname |
/**
Expand Down Expand Up @@ -188,7 +188,7 @@ use Antlr\\Antlr4\\Runtime\\Tree\\AbstractParseTreeVisitor;
* which can be extended to create a visitor which only needs to handle a subset
* of the available methods.
*/
class <file.grammarName>BaseVisitor extends AbstractParseTreeVisitor implements <file.grammarName>Visitor
abstract class <file.grammarName>BaseVisitor extends AbstractParseTreeVisitor implements <file.grammarName>Visitor
{
<file.visitorNames:{lname |
/**
Expand Down
Loading