EmbASP-Python
SPDGrammarVisitor.py
1 # Generated from SPDGrammar.g4 by ANTLR 4.7
2 from antlr4 import *
3 
4 # This class defines a complete generic visitor for a parse tree produced by SPDGrammarParser.
5 
6 class SPDGrammarVisitor(ParseTreeVisitor):
7 
8  # Visit a parse tree produced by SPDGrammarParser#array.
9  def visitArray(self, ctx):
10  return self.visitChildren(ctx)
11 
12 
13  # Visit a parse tree produced by SPDGrammarParser#json.
14  def visitJson(self, ctx):
15  return self.visitChildren(ctx)
16 
17 
18  # Visit a parse tree produced by SPDGrammarParser#oBjEcT.
19  def visitOBjEcT(self, ctx):
20  return self.visitChildren(ctx)
21 
22 
23  # Visit a parse tree produced by SPDGrammarParser#pair.
24  def visitPair(self, ctx):
25  return self.visitChildren(ctx)
26 
27 
28  # Visit a parse tree produced by SPDGrammarParser#ArrayValue.
29  def visitArrayValue(self, ctx):
30  return self.visitChildren(ctx)
31 
32 
33  # Visit a parse tree produced by SPDGrammarParser#BooleanValue.
34  def visitBooleanValue(self, ctx):
35  return self.visitChildren(ctx)
36 
37 
38  # Visit a parse tree produced by SPDGrammarParser#IntegerValue.
39  def visitIntegerValue(self, ctx):
40  return self.visitChildren(ctx)
41 
42 
43  # Visit a parse tree produced by SPDGrammarParser#NullValue.
44  def visitNullValue(self, ctx):
45  return self.visitChildren(ctx)
46 
47 
48  # Visit a parse tree produced by SPDGrammarParser#ObjectValue.
49  def visitObjectValue(self, ctx):
50  return self.visitChildren(ctx)
51 
52 
53  # Visit a parse tree produced by SPDGrammarParser#StringValue.
54  def visitStringValue(self, ctx):
55  return self.visitChildren(ctx)
56 
57 
parsers.pddl.solver_planning_domains.SPDGrammarVisitor.SPDGrammarVisitor
Definition: SPDGrammarVisitor.py:6