internal static ConstReferenceNode ConstReferenceNode(string value) { ConstReferenceNode constReferenceNode = s_ReferenceNodePool.Get(); constReferenceNode.identifier = value; return(constReferenceNode); }
protected bool Equals(ConstReferenceNode other) { return(string.Equals(identifier, other.identifier)); }