EmbASP-CSharp
PDDLGrammarVisitor.cs
1 //------------------------------------------------------------------------------
2 // <auto-generated>
3 // This code was generated by a tool.
4 // ANTLR Version: 4.7
5 //
6 // Changes to this file may cause incorrect behavior and will be lost if
7 // the code is regenerated.
8 // </auto-generated>
9 //------------------------------------------------------------------------------
10 
11 // Generated from PDDLGrammar.g4 by ANTLR 4.7
12 
13 // Unreachable code detected
14 #pragma warning disable 0162
15 // The variable '...' is assigned but its value is never used
16 #pragma warning disable 0219
17 // Missing XML comment for publicly visible type or member '...'
18 #pragma warning disable 1591
19 // Ambiguous reference in cref attribute
20 #pragma warning disable 419
21 
22 using Antlr4.Runtime.Misc;
23 using Antlr4.Runtime.Tree;
24 using IToken = Antlr4.Runtime.IToken;
25 
31 [System.CodeDom.Compiler.GeneratedCode("ANTLR", "4.7")]
32 [System.CLSCompliant(false)]
33 public interface IPDDLGrammarVisitor<Result> : IParseTreeVisitor<Result> {
39  Result VisitAtom([NotNull] PDDLGrammarParser.AtomContext context);
45  Result VisitOutput([NotNull] PDDLGrammarParser.OutputContext context);
46 }
PDDLGrammarParser.OutputContext
Definition: PDDLGrammarParser.cs:136
PDDLGrammarParser
Definition: PDDLGrammarParser.cs:35
PDDLGrammarParser.AtomContext
Definition: PDDLGrammarParser.cs:83
IPDDLGrammarVisitor.VisitAtom
Result VisitAtom([NotNull] PDDLGrammarParser.AtomContext context)
Visit a parse tree produced by PDDLGrammarParser.atom.
IPDDLGrammarVisitor.VisitOutput
Result VisitOutput([NotNull] PDDLGrammarParser.OutputContext context)
Visit a parse tree produced by PDDLGrammarParser.output.
IPDDLGrammarVisitor
This interface defines a complete generic visitor for a parse tree produced by PDDLGrammarParser.
Definition: PDDLGrammarVisitor.cs:33