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 b962286 commit c721010Copy full SHA for c721010
Rubberduck.Parsing/Common/ExperimentalAttribute.cs
@@ -5,12 +5,15 @@ namespace Rubberduck.Parsing.Common
5
[AttributeUsage(AttributeTargets.Class)]
6
public class ExperimentalAttribute : Attribute
7
{
8
- public ExperimentalAttribute() : this(string.Empty)
9
- {
10
- }
11
-
12
public ExperimentalAttribute(string resource)
13
+ Resource = resource;
14
}
+
+ /// <summary>
+ /// Resource key to look up in <see cref="Rubberduck.Resources.Experimental.ExperimentalNames"/>.
15
+ /// Also serves as a unique identifier to distinguish experimental features from one another.
16
+ /// </summary>
17
+ public string Resource { get; }
18
19
0 commit comments