fix all tests again

This commit is contained in:
Torsten Ruger
2015-05-13 12:15:14 +03:00
parent dd41758dea
commit f92e5cf475
6 changed files with 8 additions and 8 deletions

View File

@ -73,7 +73,7 @@ module Virtual
def self.compile_string expression , method
value = StringConstant.new(expression.string)
to = Return.new(Reference , value)
Space.space.add_object value
Machine.instance.space.add_object value
method.add_code Set.new( to , value )
to
end