Class: ActiveSupport::Callbacks::CallTemplate::InstanceExec1

Inherits:
Object
  • Object
show all
Defined in:
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/callbacks.rb

Instance Method Summary collapse

Constructor Details

#initialize(block) ⇒ InstanceExec1

Returns a new instance of InstanceExec1.



457
458
459
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/callbacks.rb', line 457

def initialize(block)
  @override_block = block
end

Instance Method Details

#expand(target, value, block) ⇒ Object



461
462
463
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/callbacks.rb', line 461

def expand(target, value, block)
  [target, @override_block, :instance_exec, target]
end

#inverted_lambdaObject



471
472
473
474
475
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/callbacks.rb', line 471

def inverted_lambda
  lambda do |target, value, &block|
    !target.instance_exec(target, &@override_block)
  end
end

#make_lambdaObject



465
466
467
468
469
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/callbacks.rb', line 465

def make_lambda
  lambda do |target, value, &block|
    target.instance_exec(target, &@override_block)
  end
end