| File: Rename\ConflictEngine\RelatedLocation.cs | Web Access |
| Project: src\roslyn\src\Workspaces\Core\Portable\Microsoft.CodeAnalysis.Workspaces.csproj (Microsoft.CodeAnalysis.Workspaces) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Runtime.Serialization; using Microsoft.CodeAnalysis.Text; namespace Microsoft.CodeAnalysis.Rename.ConflictEngine; /// <summary> /// Gives information about an identifier span that was affected by Rename (Reference or Non reference) /// </summary> /// <param name="ConflictCheckSpan"> /// The Span of the original identifier if it was in source, otherwise the span to check for implicit /// references. /// </param> /// <param name="ComplexifiedTargetSpan"> /// If there was a conflict at ConflictCheckSpan during rename, then the next phase in rename uses /// ComplexifiedTargetSpan span to be expanded to resolve the conflict. /// </param> [DataContract] internal readonly record struct RelatedLocation( [property: DataMember(Order = 0)] TextSpan ConflictCheckSpan, [property: DataMember(Order = 1)] DocumentId DocumentId, [property: DataMember(Order = 2)] RelatedLocationType Type, [property: DataMember(Order = 3)] bool IsReference = false, [property: DataMember(Order = 4)] TextSpan ComplexifiedTargetSpan = default) { public RelatedLocation WithType(RelatedLocationType type) => new(ConflictCheckSpan, DocumentId, type, IsReference, ComplexifiedTargetSpan); }