# File lib/v8/conversion/object.rb, line 13 def to_ruby wrap = if IsArray() ::V8::Array elsif IsFunction() ::V8::Function else ::V8::Object end wrap.new(self) end
# File lib/v8/conversion/object.rb, line 24 def to_v8 self end