fix all tests from removing the receiver load

This commit is contained in:
Torsten Ruger
2018-03-20 23:31:42 +05:30
parent 48485477c2
commit d9ce295b89
14 changed files with 47 additions and 44 deletions

View File

@ -51,7 +51,11 @@ module MomCompile
res << is.class.name.split("::").last
is = is.next
end
"[#{res.join(',')}]"
ret = ""
res.to_s.split(",").each_slice(6).each do |line|
ret += " " + line.join(",") + " ,\n"
end
ret.gsub('"' , '')
end
end