public virtual AnnotationVersionOne VisitAnnotationVersionOne(AnnotationVersionOne node)
        {
            if (node != null)
            {
                if (node.Locations != null)
                {
                    for (int index_0 = 0; index_0 < node.Locations.Count; ++index_0)
                    {
                        node.Locations[index_0] = VisitNullChecked(node.Locations[index_0]);
                    }
                }
            }

            return(node);
        }
예제 #2
0
 public bool ValueEquals(AnnotationVersionOne other) => ValueComparer.Equals(this, other);