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 f334e44 commit ecbe317Copy full SHA for ecbe317
src/AST/Declaration.cs
@@ -1,5 +1,6 @@
1
using System;
2
using System.Collections.Generic;
3
+using System.Diagnostics;
4
using System.Linq;
5
6
namespace CppSharp.AST
@@ -47,6 +48,7 @@ public enum GenerationKind
47
48
/// <summary>
49
/// Represents a C++ declaration.
50
/// </summary>
51
+ [DebuggerDisplay("{ToString()} [{GetType().Name}]")]
52
public abstract class Declaration : INamedDecl
53
{
54
public SourceLocation Location;
0 commit comments