class V8::Portal::Interceptors::NamedPropertyDeleter

Public Instance Methods

call(property, info) click to toggle source
# File lib/v8/portal/interceptors.rb, line 101
def call(property, info)
  intercept(info) do |obj, dontintercept|
    @access.delete(obj, property, &dontintercept)
  end
end