more work on send, remove yaml hack in test

This commit is contained in:
Torsten Ruger
2014-08-21 22:57:20 +03:00
parent 2260c680b2
commit 5b1e86da49
8 changed files with 49 additions and 23 deletions

View File

@@ -12,6 +12,9 @@ module Virtual
# another abstract "marker" class (so we can check for it)
# derived classes are Boot/Meta Class and StringConstant
class ObjectConstant < Constant
def type
Virtual::Reference
end
end
class IntegerConstant < Constant
@@ -34,9 +37,6 @@ module Virtual
@string = str
end
attr_reader :string
def type
Virtual::Reference
end
def result= value
class_for(MoveInstruction).new(value , self , :opcode => :mov)
end