def visitExp9(self, ctx: MCParser.Exp9Context): if ctx.exp(): return self.visit(ctx.exp()) return self.visit(ctx.operand())
def visitExp9(self, ctx: MCParser.Exp9Context): return self.visit(ctx.operand()) if ctx.operand() else self.visit( ctx.subexp())
def visitExp9(self, ctx: MCParser.Exp9Context): #exp9: '(' exp')' | operand; if ctx.operand(): return self.visit(ctx.operand()) else: return self.visit(ctx.exp())
def visitExp9(self, ctx: MCParser.Exp9Context): return self.visit(ctx.exp()) if ctx.getChildCount() == 3 \ else self.visit(ctx.operand())