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

Merge pull request #441 from jeffpereira/patch-1

Fix deprecation warning method_missing
This commit is contained in:
Charles Lowell 2018-02-06 17:26:28 -07:00 committed by GitHub
commit 56da5e5475
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -52,7 +52,7 @@ class V8::Object
end
end
def respond_to?(method)
def respond_to?(method, include_all=false)
super or self[method] != nil
end