Mercurial > lcfOS
view python/libs/compiler/core/instruction.py @ 84:5205ebcfe6df prototype2
Removed print
author | windel |
---|---|
date | Sun, 18 Nov 2012 13:39:04 +0100 |
parents | 5351594349b0 |
children |
line wrap: on
line source
from .value import Value class Instruction(Value): pass class CallInstruction(Instruction): pass class BinaryOperator(Instruction): pass class LoadInstruction(Instruction): def __init__(self, ptr, name, insertBefore): self.setName(name)