/* Copyright (C) 2014-2019 de4dot@gmail.com This file is part of dnSpy dnSpy is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. dnSpy is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with dnSpy. If not, see . */ using System; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; namespace dnSpy.Contracts.Debugger.DotNet.Code { /// /// Source statement /// public readonly struct DbgSourceStatement : IEquatable { internal static readonly SpanStartComparerImpl SpanStartComparer = new SpanStartComparerImpl(); readonly DbgILSpan ilSpan; readonly DbgTextSpan textSpan; /// /// IL span /// public DbgILSpan ILSpan => ilSpan; /// /// Text span /// public DbgTextSpan TextSpan => textSpan; internal sealed class SpanStartComparerImpl : IComparer { public int Compare([AllowNull] DbgSourceStatement x, [AllowNull] DbgSourceStatement y) => (int)(x.ilSpan.Start - y.ilSpan.Start); } /// /// Constructor /// /// IL span /// Text span public DbgSourceStatement(DbgILSpan ilSpan, DbgTextSpan textSpan) { this.ilSpan = ilSpan; this.textSpan = textSpan; } /// /// operator ==() /// /// /// /// public static bool operator ==(DbgSourceStatement left, DbgSourceStatement right) => left.Equals(right); /// /// operator !=() /// /// /// /// public static bool operator !=(DbgSourceStatement left, DbgSourceStatement right) => !left.Equals(right); /// /// Equals() /// /// /// public bool Equals(DbgSourceStatement other) => ilSpan.Equals(other.ilSpan) && textSpan.Equals(other.textSpan); /// /// Equals() /// /// /// public override bool Equals(object? obj) => obj is DbgSourceStatement && Equals((DbgSourceStatement)obj); /// /// GetHashCode() /// /// public override int GetHashCode() => ilSpan.GetHashCode() ^ textSpan.GetHashCode(); /// /// ToString() /// /// public override string ToString() => "{" + ilSpan.ToString() + "," + textSpan.ToString() + "}"; } }