/*
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 dnSpy.Contracts.Decompiler;
using Microsoft.VisualStudio.Text;
namespace dnSpy.Contracts.Documents.Tabs.DocViewer {
///
/// A reference in the text
///
public sealed class TextReference {
///
/// Gets the reference or null
///
public object? Reference { get; }
///
/// Gets the flags
///
public DecompilerReferenceFlags Flags { get; }
///
/// true if it's a local, parameter, or label
///
public bool IsLocal => (Flags & DecompilerReferenceFlags.Local) != 0;
///
/// true if it's a definition
///
public bool IsDefinition => (Flags & DecompilerReferenceFlags.Definition) != 0;
///
/// true if it's a write to a reference
///
public bool IsWrite => (Flags & DecompilerReferenceFlags.IsWrite) != 0;
///
/// true if reference shouldn't be highlighted
///
public bool IsHidden => (Flags & DecompilerReferenceFlags.Hidden) != 0;
///
/// true if reference can't be followed
///
public bool NoFollow => (Flags & DecompilerReferenceFlags.NoFollow) != 0;
///
/// Gets the span or null if it's unknown
///
public Span? Span { get; }
///
/// Constructor
///
/// Reference or null
public TextReference(object? reference)
: this(reference, DecompilerReferenceFlags.None) {
}
///
/// Constructor
///
/// Reference or null
/// Span
public TextReference(object? reference, Span span)
: this(reference, DecompilerReferenceFlags.None, span) {
}
///
/// Constructor
///
/// Reference or null
/// Flags
public TextReference(object? reference, DecompilerReferenceFlags flags) {
Reference = reference;
Flags = flags;
Span = null;
}
///
/// Constructor
///
/// Reference or null
/// Flags
/// Span
public TextReference(object? reference, DecompilerReferenceFlags flags, Span span) {
Reference = reference;
Flags = flags;
Span = span;
}
}
}