opal fix and minor

This commit is contained in:
Torsten Ruger 2015-11-09 23:27:15 +02:00
parent 368263d5a5
commit 9ab7b476d5
3 changed files with 5 additions and 5 deletions

View File

@ -133,7 +133,7 @@ module Parfait
string = ""
index = 1
while( index <= self.char_length)
string[index - 1] = get_char(index).chr
string += get_char(index).chr
index = index + 1
end
string

View File

@ -14,7 +14,7 @@ class Object
end
end
HERE
@expect = [Label, GetSlot, SetSlot, Label, FunctionReturn]
@expect = [Label, GetSlot, GetSlot, GetSlot, SetSlot, Label, FunctionReturn]
check
end
@ -60,8 +60,8 @@ class Object
end
end
HERE
@expect = [Label, GetSlot, SetSlot, GetSlot, GetSlot, SetSlot, Label ,
FunctionReturn]
@expect = [Label, RegisterTransfer, GetSlot, GetSlot, SetSlot, GetSlot, GetSlot ,
SetSlot, Label, FunctionReturn]
check
end
end