class RuboCop::AST::Node

def keyword?

def keyword?
  return true if special_keyword? || send_type? && prefix_not?
  return false unless KEYWORDS.include?(type)
  !OPERATOR_KEYWORDS.include?(type) || loc.operator.is?(type.to_s)
end