Class: V8::Portal::Interceptors::NamedPropertyEnumerator

Inherits:
Interceptor show all
Defined in:
lib/v8/portal/interceptors.rb

Instance Method Summary collapse

Methods inherited from Interceptor

#initialize, #intercept

Constructor Details

This class inherits a constructor from V8::Portal::Interceptors::Interceptor

Instance Method Details

#call(info) ⇒ Object



93
94
95
96
97
# File 'lib/v8/portal/interceptors.rb', line 93

def call(info)
  intercept(info) do |obj, dontintercept|
    @access.names(obj, &dontintercept).to_a
  end
end