EmbASP-Python
PDDLGrammarVisitor.py
1 # Generated from PDDLGrammar.g4 by ANTLR 4.7
2 from antlr4 import *
3 
4 # This class defines a complete generic visitor for a parse tree produced by PDDLGrammarParser.
5 
6 class PDDLGrammarVisitor(ParseTreeVisitor):
7 
8  # Visit a parse tree produced by PDDLGrammarParser#atom.
9  def visitAtom(self, ctx):
10  return self.visitChildren(ctx)
11 
12 
13  # Visit a parse tree produced by PDDLGrammarParser#output.
14  def visitOutput(self, ctx):
15  return self.visitChildren(ctx)
16 
17 
parsers.pddl.pddl_parser_base.PDDLGrammarVisitor.PDDLGrammarVisitor
Definition: PDDLGrammarVisitor.py:6