class V8::Portal::Interceptors::NamedPropertyQuery

Public Instance Methods

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