view python/libs/compiler/core/instruction.py @ 88:f3fe557be5ed

Split off of items to reduce file size
author windel
date Tue, 27 Nov 2012 18:00:13 +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)