public StandaloneGCStaticDescRegionNode(GCStaticDescNode standaloneGCStaticDesc)
 {
     _standaloneGCStaticDesc = standaloneGCStaticDesc;
 }
        internal int CompareTo(GCStaticDescNode other, TypeSystemComparer comparer)
        {
            var compare = _isThreadStatic.CompareTo(other._isThreadStatic);

            return(compare != 0 ? compare : comparer.Compare(_type, other._type));
        }