1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00

pass the dontintercept block down when delegating to the access implementation.

This commit is contained in:
Charles Lowell 2010-08-28 11:22:33 -05:00
parent 1be713d53d
commit 948de0a5f3

View file

@ -32,8 +32,8 @@ module V8
end
end
def method_missing(name, *args)
@impl.send(name, *args)
def method_missing(name, *args, &blk)
@impl.send(name, *args, &blk)
end
end