forked from O-n-y/SyntaxLume
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClassificationTypes.cs
More file actions
99 lines (74 loc) · 3.79 KB
/
ClassificationTypes.cs
File metadata and controls
99 lines (74 loc) · 3.79 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
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;
[Export(typeof(ClassificationTypeDefinition))]
[Name("control flow - if")]
internal static ClassificationTypeDefinition ControlFlowIfType = null;
[Export(typeof(ClassificationTypeDefinition))]
[Name("control flow - else")]
internal static ClassificationTypeDefinition ControlFlowElseType = null;
[Export(typeof(ClassificationTypeDefinition))]
[Name("control flow - while")]
internal static ClassificationTypeDefinition ControlFlowWhileType = null;
[Export(typeof(ClassificationTypeDefinition))]
[Name("control flow - do")]
internal static ClassificationTypeDefinition ControlFlowDoType = null;
[Export(typeof(ClassificationTypeDefinition))]
[Name("control flow - switch")]
internal static ClassificationTypeDefinition ControlFlowSwitchType = null;
[Export(typeof(ClassificationTypeDefinition))]
[Name("control flow - break")]
internal static ClassificationTypeDefinition ControlFlowBreakType = null;
[Export(typeof(ClassificationTypeDefinition))]
[Name("control flow - continue")]
internal static ClassificationTypeDefinition ControlFlowContinueType = null;
[Export(typeof(ClassificationTypeDefinition))]
[Name("control flow - for")]
internal static ClassificationTypeDefinition ControlFlowForType = null;
[Export(typeof(ClassificationTypeDefinition))]
[Name("control flow - foreach")]
internal static ClassificationTypeDefinition ControlFlowForeachType = null;
[Export(typeof(ClassificationTypeDefinition))]
[Name("control flow - return")]
internal static ClassificationTypeDefinition ControlFlowReturnType = null;
[Export(typeof(ClassificationTypeDefinition))]
[Name("control flow - goto")]
internal static ClassificationTypeDefinition ControlFlowGotoType = null;
[Export(typeof(ClassificationTypeDefinition))]
[Name("control flow - throw")]
internal static ClassificationTypeDefinition ControlFlowThrowType = null;
[Export(typeof(ClassificationTypeDefinition))]
[Name("control flow - yield")]
internal static ClassificationTypeDefinition ControlFlowYieldType = null;
}