1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00
therubyracer/lib/v8/object.rb
2009-12-18 09:48:06 +02:00

12 lines
No EOL
161 B
Ruby

module V8
class Object
def initialize(native)
@native = native
end
def [](key)
To.ruby(@native.Get(To.v8(key)))
end
end
end