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:
parent
1be713d53d
commit
948de0a5f3
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue