We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be16dc7 commit 5915c79Copy full SHA for 5915c79
Rubberduck.Parsing/Symbols/Declaration.cs
@@ -1,4 +1,5 @@
1
using System.Collections.Generic;
2
+using System.Diagnostics;
3
using System.Linq;
4
using Antlr4.Runtime;
5
using Microsoft.CSharp.RuntimeBinder;
@@ -11,6 +12,7 @@ namespace Rubberduck.Parsing.Symbols
11
12
/// <summary>
13
/// Defines a declared identifier.
14
/// </summary>
15
+ [DebuggerDisplay("({DeclarationType}) {Accessibility} {IdentifierName} As {AsTypeName} | {Selection}")]
16
public class Declaration
17
{
18
public Declaration(QualifiedMemberName qualifiedName, string parentScope,
0 commit comments