方法
- E
- I
- M
- N
類別公開方法
new(block) 連結
來源:顯示 | 在 GitHub 上
# File activesupport/lib/active_support/callbacks.rb, line 460 def initialize(block) @override_block = block end
實體公開方法
expand(target, value, block) 連結
來源:顯示 | 在 GitHub 上
# File activesupport/lib/active_support/callbacks.rb, line 464 def expand(target, value, block) [target, @override_block, :instance_exec, target] end
inverted_lambda() 連結
來源:顯示 | 在 GitHub 上
# File activesupport/lib/active_support/callbacks.rb, line 474 def inverted_lambda lambda do |target, value, &block| !target.instance_exec(target, &@override_block) end end
make_lambda() 連結
來源:顯示 | 在 GitHub 上
# File activesupport/lib/active_support/callbacks.rb, line 468 def make_lambda lambda do |target, value, &block| target.instance_exec(target, &@override_block) end end