EmbASP-CSharp v7.1.0
|
This class provides an empty implementation of IDatalogGrammarVisitor<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] DatalogGrammarParser.OutputContext context) |
Visit a parse tree produced by DatalogGrammarParser.output. More... | |
virtual Result | VisitPredicate_atom ([NotNull] DatalogGrammarParser.Predicate_atomContext context) |
Visit a parse tree produced by DatalogGrammarParser.predicate_atom. More... | |
virtual Result | VisitTerm ([NotNull] DatalogGrammarParser.TermContext context) |
Visit a parse tree produced by DatalogGrammarParser.term. More... | |
This class provides an empty implementation of IDatalogGrammarVisitor<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 DatalogGrammarParser.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 IDatalogGrammarVisitor< Result >.
|
inlinevirtual |
Visit a parse tree produced by DatalogGrammarParser.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 IDatalogGrammarVisitor< Result >.
|
inlinevirtual |
Visit a parse tree produced by DatalogGrammarParser.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 IDatalogGrammarVisitor< Result >.
Reimplemented in it.unical.mat.parsers.datalog.DatalogParser.