Method: RuboCop::Cop::Style::ZeroLengthPredicate#on_send

Defined in:
lib/rubocop/cop/style/zero_length_predicate.rb

#on_send(node) ⇒ Object



45
46
47
48
49
# File 'lib/rubocop/cop/style/zero_length_predicate.rb', line 45

def on_send(node)
  check_zero_length_predicate(node)
  check_zero_length_comparison(node)
  check_nonzero_length_comparison(node)
end