Ejemplo n.º 1
0
 def enterXor_expr(self, ctx: Python3Parser.Xor_exprContext):
     if self.vardec:
         self.vardec = has_child(ctx)
Ejemplo n.º 2
0
 def enterNot_test(self, ctx: Python3Parser.Not_testContext):
     if self.vardec:
         self.vardec = has_child(ctx)
Ejemplo n.º 3
0
 def enterComparison(self, ctx: Python3Parser.ComparisonContext):
     if self.vardec:
         self.vardec = has_child(ctx)
Ejemplo n.º 4
0
 def enterPower(self, ctx: Python3Parser.PowerContext):
     if self.vardec:
         self.vardec = has_child(ctx)
Ejemplo n.º 5
0
 def enterTestlist_star_expr(self,
                             ctx: Python3Parser.Testlist_star_exprContext):
     if self.vardec:
         self.vardec = has_child(ctx)
Ejemplo n.º 6
0
 def enterTerm(self, ctx: Python3Parser.TermContext):
     if self.vardec:
         self.vardec = has_child(ctx)
Ejemplo n.º 7
0
 def enterFactor(self, ctx: Python3Parser.FactorContext):
     if self.vardec:
         self.vardec = has_child(ctx)
Ejemplo n.º 8
0
 def enterArith(self, ctx: RParser.ArithContext):
     if self.vardec:
         self.vardec = has_child(ctx)
Ejemplo n.º 9
0
 def enterLogical(self, ctx: RParser.LogicalContext):
     if self.vardec:
         self.vardec = has_child(ctx)
Ejemplo n.º 10
0
 def enterExpr(self, ctx: RParser.ExprContext):
     if self.vardec:
         self.vardec = has_child(ctx)
Ejemplo n.º 11
0
 def enterAtom(self, ctx: RParser.AtomContext):
     if self.vardec:
         self.vardec = has_child(ctx)
Ejemplo n.º 12
0
 def enterKwrd(self, ctx: RParser.KwrdContext):
     if self.vardec:
         self.vardec = has_child(ctx)