1
0
Fork 0
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:
Charles Lowell 2012-04-05 14:53:44 -05:00
parent 723068da18
commit 7794826aa9

View file

@ -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)