Skip to content

Commit

Permalink
Consertar nome de variável
Browse files Browse the repository at this point in the history
  • Loading branch information
erickolisveira committed Jun 9, 2020
1 parent 475b6bf commit 1bd9e8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Visitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ def visitExpr_PreDecrement(self, exprPreDecrement):
exprPreDecrement.variable.accept(self)

def visitExpr_PosDecrement(self, exprPosDecrement):
exprPosIncrement.variable.accept(self)
exprPosDecrement.variable.accept(self)
print('--',end='')

def visitExpr_Variable(self, exprVariable):
Expand Down

0 comments on commit 1bd9e8b

Please sign in to comment.