opal fix and minor
This commit is contained in:
parent
368263d5a5
commit
9ab7b476d5
@ -133,7 +133,7 @@ module Parfait
|
|||||||
string = ""
|
string = ""
|
||||||
index = 1
|
index = 1
|
||||||
while( index <= self.char_length)
|
while( index <= self.char_length)
|
||||||
string[index - 1] = get_char(index).chr
|
string += get_char(index).chr
|
||||||
index = index + 1
|
index = index + 1
|
||||||
end
|
end
|
||||||
string
|
string
|
||||||
|
@ -30,7 +30,7 @@ module Statements
|
|||||||
str.gsub!("Register::","")
|
str.gsub!("Register::","")
|
||||||
ret = ""
|
ret = ""
|
||||||
str.split(",").each_slice(7).each do |line|
|
str.split(",").each_slice(7).each do |line|
|
||||||
ret += " " + line.join(",") + " ,\n"
|
ret += " " + line.join(",") + " ,\n"
|
||||||
end
|
end
|
||||||
ret
|
ret
|
||||||
end
|
end
|
||||||
|
@ -14,7 +14,7 @@ class Object
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
HERE
|
HERE
|
||||||
@expect = [Label, GetSlot, SetSlot, Label, FunctionReturn]
|
@expect = [Label, GetSlot, GetSlot, GetSlot, SetSlot, Label, FunctionReturn]
|
||||||
check
|
check
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -60,8 +60,8 @@ class Object
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
HERE
|
HERE
|
||||||
@expect = [Label, GetSlot, SetSlot, GetSlot, GetSlot, SetSlot, Label ,
|
@expect = [Label, RegisterTransfer, GetSlot, GetSlot, SetSlot, GetSlot, GetSlot ,
|
||||||
FunctionReturn]
|
SetSlot, Label, FunctionReturn]
|
||||||
check
|
check
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user