class V8::IndexedPropertyGetter

def self.call(index, info)

def self.call(index, info)
  obj = To.rb(info.This())
  if obj.respond_to?(:[])
    Function.rubysend(obj, :[], index)
  else
    C::Empty
  end
end