mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
12 lines
No EOL
161 B
Ruby
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 |