class Prism::EmbeddedStatementsNode
def ===(other)
Implements case-equality for the node. This is effectively == but without
def ===(other) other.is_a?(EmbeddedStatementsNode) && (opening_loc.nil? == other.opening_loc.nil?) && (statements === other.statements) && (closing_loc.nil? == other.closing_loc.nil?) end