EmbASP-CSharp v7.1.0
|
This class provides an empty implementation of IPDDLGrammarVisitor<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 | VisitAtom ([NotNull] PDDLGrammarParser.AtomContext context) |
Visit a parse tree produced by PDDLGrammarParser.atom. More... | |
virtual Result | VisitOutput ([NotNull] PDDLGrammarParser.OutputContext context) |
Visit a parse tree produced by PDDLGrammarParser.output. More... | |
This class provides an empty implementation of IPDDLGrammarVisitor<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. |
|
inlinevirtual |
Visit a parse tree produced by PDDLGrammarParser.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 IPDDLGrammarVisitor< Result >.
Reimplemented in it.unical.mat.parsers.pddl.PDDLParser.
|
inlinevirtual |
Visit a parse tree produced by PDDLGrammarParser.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 IPDDLGrammarVisitor< Result >.