File tree Expand file tree Collapse file tree 1 file changed +33
-17
lines changed Expand file tree Collapse file tree 1 file changed +33
-17
lines changed Original file line number Diff line number Diff line change @@ -188,6 +188,16 @@ grammar
188
188
)
189
189
}
190
190
191
+ Specialization =
192
+ element specialization
193
+ {
194
+ ID,
195
+ attribute primary { text },
196
+ TemplateArg *,
197
+ RecordScope
198
+ }
199
+
200
+
191
201
TemplateArg =
192
202
element targ
193
203
{
@@ -223,23 +233,29 @@ grammar
223
233
element sc-register {empty}
224
234
)
225
235
226
- Scope = (
227
- Namespace |
228
- Record |
229
- Function |
230
- Typedef |
231
- Enum |
232
- Var |
233
- Template)*
234
-
235
- RecordScope = (
236
- Record |
237
- Function |
238
- Typedef |
239
- Enum |
240
- Field |
241
- Var |
242
- Template)*
236
+ Scope =
237
+ (
238
+ Namespace |
239
+ Record |
240
+ Function |
241
+ Typedef |
242
+ Enum |
243
+ Var |
244
+ Template |
245
+ Specialization
246
+ )*
247
+
248
+ RecordScope =
249
+ (
250
+ Record |
251
+ Function |
252
+ Typedef |
253
+ Enum |
254
+ Field |
255
+ Var |
256
+ Template |
257
+ Specialization
258
+ )*
243
259
244
260
# JavaDoc not in a nested grammar , so we can convert it to a XSD
245
261
You can’t perform that action at this time.
0 commit comments