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
2010-02-18 14:16:11 -06:00

44 lines
No EOL
723 B
Ruby

module V8
class Object
include Enumerable
def initialize(native)
@native = native
end
def [](key)
@native.context.open do
To.ruby(@native.Get(key.to_s))
end
end
def []=(key, value)
value.tap do
@native.context.open do
@native.Set(key.to_s, value)
end
end
end
def to_s
@native.context.open do
@native.ToString()
end
end
def each
for prop in @native.GetPropertyNames()
yield prop, self[prop]
end
end
end
end
class Object
def eval_js(javascript)
V8::Context.open(:with => self) do |cxt|
cxt.eval(javascript)
end
end
end