class V8::Portal::Interceptors::IndexedPropertyQuery

Public Instance Methods

call(property, info) click to toggle source
# File lib/v8/portal/interceptors.rb, line 125
def call(property, info)
  attributes = PropertyAttributes.new
  result = intercept(info) do |obj, dontintercept|
    @access.indices(obj, &dontintercept)
  end
  result == C::Empty ? C::Empty : C::Integer::New(attributes.flags)
end