lib/v8/object.rb in therubyracer-0.10.0 vs lib/v8/object.rb in therubyracer-0.10.1
- old
+ new
@@ -34,10 +34,10 @@
end
end
end
def respond_to?(method)
- self[method] != nil
+ super or self[method] != nil
end
def method_missing(name, *args, &block)
if name.to_s =~ /(.*)=$/
if args.length > 1
\ No newline at end of file