Method: Mutant::AST::Meta::Send#proc?

Defined in:
lib/mutant/ast/meta/send.rb

#proc?Boolean

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Test if node is defining a proc

Returns:

  • (Boolean)


28
29
30
# File 'lib/mutant/ast/meta/send.rb', line 28

def proc?
  naked_proc? || proc_new?
end