(self, node, instruction)
| 78 | self.instructions.append(('PUSH', node.value)) |
| 79 | |
| 80 | def binop(self, node, instruction): |
| 81 | self.visit(node.left) |
| 82 | self.visit(node.right) |
| 83 | self.instructions.append((instruction,)) |
| 84 | |
| 85 | def visit_Add(self, node): |
| 86 | self.binop(node, 'ADD') |