class V8::Object

Public Class Methods

new(native, portal) click to toggle source
# File lib/v8/object.rb, line 6
def initialize(native, portal)
  @native, @portal = native, portal
end

Public Instance Methods

[](key) click to toggle source
# File lib/v8/object.rb, line 10
def [](key)
  @portal.open do |to|
    to.rb(@native.Get(to.v8(key)))
  end
end
[]=(key, value) click to toggle source
# File lib/v8/object.rb, line 16
def []=(key, value)
  value.tap do
    @portal.open do |to|
      @native.Set(to.v8(key), to.v8(value))
    end
  end
end
each() { |prop, self| ... } click to toggle source
# File lib/v8/object.rb, line 30
def each
  @portal.open do |to|
    for prop in to.rb(@native.GetPropertyNames())
      yield prop, self[prop]
    end
  end
end
method_missing(name, *args, &block) click to toggle source
# File lib/v8/object.rb, line 42
def method_missing(name, *args, &block)
  if name.to_s =~ /(.*)=$/
    if args.length > 1
      self[$1] = args
      return args
    else
      self[$1] = args.first
      return args
    end
  end
  return super(name, *args, &block) unless self.respond_to?(name)
  property = self[name]
  if property.kind_of?(V8::Function)
    property.methodcall(self, *args)
  elsif args.empty?
    property
  else
    raise ArgumentError, "wrong number of arguments (#{args.length} for 0)" unless args.empty?
  end
end
respond_to?(method) click to toggle source
# File lib/v8/object.rb, line 38
def respond_to?(method)
  super or self[method] != nil
end
to_s() click to toggle source
# File lib/v8/object.rb, line 24
def to_s
  @portal.open do |to|
    to.rb(@native.ToString())
  end
end