-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClassificationTypes.cs
47 lines (35 loc) · 1.66 KB
/
ClassificationTypes.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
using Microsoft.VisualStudio.Text.Classification;
using Microsoft.VisualStudio.Utilities;
using System.ComponentModel.Composition;
#pragma warning disable CS0649
namespace Ony.SyntaxLume;
internal static class ClassificationTypes
{
[Export(typeof(ClassificationTypeDefinition))]
[Name("access modifier - public")]
internal static ClassificationTypeDefinition PublicModifierType = null;
[Export(typeof(ClassificationTypeDefinition))]
[Name("access modifier - private")]
internal static ClassificationTypeDefinition PrivateModifierType = null;
[Export(typeof(ClassificationTypeDefinition))]
[Name("access modifier - internal")]
internal static ClassificationTypeDefinition InternalModifierType = null;
[Export(typeof(ClassificationTypeDefinition))]
[Name("access modifier - protected")]
internal static ClassificationTypeDefinition ProtectedModifierType = null;
[Export(typeof(ClassificationTypeDefinition))]
[Name("modifier - virtual")]
internal static ClassificationTypeDefinition VirtualModifierType = null;
[Export(typeof(ClassificationTypeDefinition))]
[Name("modifier - abstract")]
internal static ClassificationTypeDefinition AbstractModifierType = null;
[Export(typeof(ClassificationTypeDefinition))]
[Name("modifier - sealed")]
internal static ClassificationTypeDefinition SealedModifierType = null;
[Export(typeof(ClassificationTypeDefinition))]
[Name("modifier - override")]
internal static ClassificationTypeDefinition OverrideModifierType = null;
[Export(typeof(ClassificationTypeDefinition))]
[Name("modifier - static")]
internal static ClassificationTypeDefinition StaticModifierType = null;
}