Mercurial > lcfOS
view python/libs/compiler/core/instruction.py @ 74:f506f6b74697
Cleanup
author | windel |
---|---|
date | Sun, 11 Nov 2012 10:49:46 +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)