class Prism::NoKeywordsParameterNode
def ===(other)
Implements case-equality for the node. This is effectively == but without
def ===(other) other.is_a?(NoKeywordsParameterNode) && (operator_loc.nil? == other.operator_loc.nil?) && (keyword_loc.nil? == other.keyword_loc.nil?) end