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

46 lines
902 B
Ruby
Raw Normal View History

2009-12-18 02:48:06 -05:00
module V8
class Object
2010-01-10 13:56:10 -05:00
include Enumerable
def initialize(native, context = nil)
2009-12-18 02:48:06 -05:00
@native = native
@context = context || C::Context::GetEntered()
raise ScriptError, "V8::Object.new called without an open V8 context" unless @context
2009-12-18 02:48:06 -05:00
end
def [](key)
@context.enter do
To.ruby(@native.Get(To.v8(key)))
end
end
def []=(key, value)
value.tap do
@context.enter do
@native.Set(To.v8(key), To.v8(value))
end
end
2009-12-18 02:48:06 -05:00
end
2010-01-10 13:56:10 -05:00
def to_s
@context.enter do
To.rb(@native.ToString())
end
end
2010-01-10 13:56:10 -05:00
def each
@context.enter do
for prop in To.rb(@native.GetPropertyNames())
yield prop, self[prop]
end
2010-01-10 13:56:10 -05:00
end
end
2009-12-18 02:48:06 -05:00
end
end
class Object
def eval_js(javascript)
V8::Context.new(:with => self).eval(javascript)
end
2009-12-18 02:48:06 -05:00
end