@@ -5,16 +5,28 @@ Private Const BEG_SUB = "Sub "
5
5
Private Const END_SUB = "End Sub"
6
6
Private Const BEG_PB_SUB = "Public Sub "
7
7
Private Const BEG_PV_SUB = "Private Sub "
8
+ Private Const BEG_FR_SUB = "Friend Sub "
9
+ Private Const BEG_PB_ST_SUB = "Public Static Sub "
10
+ Private Const BEG_PV_ST_SUB = "Private Static Sub "
11
+ Private Const BEG_FR_ST_SUB = "Friend Static Sub "
8
12
9
13
Private Const BEG_FUN = "Function "
10
14
Private Const END_FUN = "End Function"
11
15
Private Const BEG_PB_FUN = "Public Function "
12
16
Private Const BEG_PV_FUN = "Private Function "
17
+ Private Const BEG_FR_FUN = "Friend Function "
18
+ Private Const BEG_PB_ST_FUN = "Public Static Function "
19
+ Private Const BEG_PV_ST_FUN = "Private Static Function "
20
+ Private Const BEG_FR_ST_FUN = "Friend Static Function "
13
21
14
22
Private Const BEG_PROP = "Property "
15
23
Private Const END_PROP = "End Property"
16
24
Private Const BEG_PB_PROP = "Public Property "
17
25
Private Const BEG_PV_PROP = "Private Property "
26
+ Private Const BEG_FR_PROP = "Friend Property "
27
+ Private Const BEG_PB_ST_PROP = "Public Static Property "
28
+ Private Const BEG_PV_ST_PROP = "Private Static Property "
29
+ Private Const BEG_FR_ST_PROP = "Friend Static Property "
18
30
19
31
Private Const BEG_ENUM = "Enum "
20
32
Private Const END_ENUM = "End Enum"
@@ -80,16 +92,28 @@ Private Sub initializeWords()
80
92
w.Add END_SUB, -1
81
93
w.Add BEG_PB_SUB, 1
82
94
w.Add BEG_PV_SUB, 1
95
+ w.Add BEG_FR_SUB, 1
96
+ w.Add BEG_PB_ST_SUB, 1
97
+ w.Add BEG_PV_ST_SUB, 1
98
+ w.Add BEG_FR_ST_SUB, 1
83
99
84
100
w.Add BEG_FUN, 1
85
101
w.Add END_FUN, -1
86
102
w.Add BEG_PB_FUN, 1
87
103
w.Add BEG_PV_FUN, 1
104
+ w.Add BEG_FR_FUN, 1
105
+ w.Add BEG_PB_ST_FUN, 1
106
+ w.Add BEG_PV_ST_FUN, 1
107
+ w.Add BEG_FR_ST_FUN, 1
88
108
89
109
w.Add BEG_PROP, 1
90
110
w.Add END_PROP, -1
91
111
w.Add BEG_PB_PROP, 1
92
112
w.Add BEG_PV_PROP, 1
113
+ w.Add BEG_FR_PROP, 1
114
+ w.Add BEG_PB_ST_PROP, 1
115
+ w.Add BEG_PV_ST_PROP, 1
116
+ w.Add BEG_FR_ST_PROP, 1
93
117
94
118
w.Add BEG_ENUM, 1
95
119
w.Add END_ENUM, -1
0 commit comments