got it down to string equality/identity

This commit is contained in:
Torsten Ruger
2015-05-31 17:54:36 +03:00
parent 1509e7ba2f
commit 5d870ef154
6 changed files with 19 additions and 9 deletions

View File

@ -39,7 +39,7 @@ module Virtual
if ref.type.is_a?(Reference) and ref.type.of_class
#find method and call
clazz = ref.type.of_class
method = clazz.resolve_method code.name
method = clazz.resolve_method code.name.to_s
raise "No method found #{code.name}" unless method
new_codes << MethodCall.new( method )
else