EmbASP-CSharp
|
This class provides an empty implementation of IASPGrammarVisitor<Result>, which can be extended to create a visitor which only needs to handle a subset of the available methods. More...
Public Member Functions | |
virtual Result | VisitOutput ([NotNull] ASPGrammarParser.OutputContext context) |
Visit a parse tree produced by ASPGrammarParser.output. More... | |
virtual Result | VisitPredicate_atom ([NotNull] ASPGrammarParser.Predicate_atomContext context) |
Visit a parse tree produced by ASPGrammarParser.predicate_atom. More... | |
virtual Result | VisitTerm ([NotNull] ASPGrammarParser.TermContext context) |
Visit a parse tree produced by ASPGrammarParser.term. More... | |
This class provides an empty implementation of IASPGrammarVisitor<Result>, which can be extended to create a visitor which only needs to handle a subset of the available methods.
Result | The return type of the visit operation. |
Definition at line 35 of file ASPGrammarBaseVisitor.cs.
|
inlinevirtual |
Visit a parse tree produced by ASPGrammarParser.output.
The default implementation returns the result of calling AbstractParseTreeVisitor<Result>.VisitChildren(IRuleNode) on context .
context | The parse tree. |
<return>The visitor result.</return>
Implements IASPGrammarVisitor< Result >.
Definition at line 45 of file ASPGrammarBaseVisitor.cs.
|
inlinevirtual |
Visit a parse tree produced by ASPGrammarParser.predicate_atom.
The default implementation returns the result of calling AbstractParseTreeVisitor<Result>.VisitChildren(IRuleNode) on context .
context | The parse tree. |
<return>The visitor result.</return>
Implements IASPGrammarVisitor< Result >.
Definition at line 55 of file ASPGrammarBaseVisitor.cs.
|
inlinevirtual |
Visit a parse tree produced by ASPGrammarParser.term.
The default implementation returns the result of calling AbstractParseTreeVisitor<Result>.VisitChildren(IRuleNode) on context .
context | The parse tree. |
<return>The visitor result.</return>
Implements IASPGrammarVisitor< Result >.
Reimplemented in it.unical.mat.parsers.asp.ASPParser.
Definition at line 65 of file ASPGrammarBaseVisitor.cs.