module RuboCop::AST::MethodIdentifierPredicates

def const_receiver?

Returns:
  • (Boolean) - whether the receiver of this node is a `const` node
def const_receiver?
  receiver&.const_type?
end