mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
make sure that we don't respond to a message before
saying that we don't
This commit is contained in:
parent
723068da18
commit
7794826aa9
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ module V8
|
|||
end
|
||||
|
||||
def respond_to?(method)
|
||||
self[method] != nil
|
||||
super or self[method] != nil
|
||||
end
|
||||
|
||||
def method_missing(name, *args, &block)
|
||||
|
|
Loading…
Reference in a new issue