Mercurial > lcfOS
view python/libs/compiler/core/instruction.py @ 71:5351594349b0
Moved error to core
author | windel |
---|---|
date | Fri, 02 Nov 2012 14:05:00 +0100 |
parents | 35286e8abd03 |
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)