adds self to sends args

This commit is contained in:
Torsten Ruger
2014-07-15 18:34:03 +03:00
parent 4d725ea1ae
commit 3a152c1295
3 changed files with 4 additions and 4 deletions

View File

@ -38,7 +38,7 @@ module Ast
if method.has_var(name)
frame.compile_get(method , name )
else
frame.compile_send( method , name )
frame.compile_send( method , name , Virtual::Self.new( Virtual::Mystery.new ) )
end
end
end