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.
2 parents 9541685 + 72cef81 commit a50cb2bCopy full SHA for a50cb2b
utils/gyb_syntax_support/CommonNodes.py
@@ -13,7 +13,12 @@
13
Node('UnknownType', kind='Type'),
14
Node('UnknownPattern', kind='Pattern'),
15
Node('Missing', kind='Syntax'),
16
- Node('MissingDecl', kind='Decl'),
+ Node('MissingDecl', kind='Decl', children=[
17
+ Child('Attributes', kind='AttributeList',
18
+ collection_element_name='Attribute', is_optional=True),
19
+ Child('Modifiers', kind='ModifierList',
20
+ collection_element_name='Modifier', is_optional=True),
21
+ ]),
22
Node('MissingExpr', kind='Expr'),
23
Node('MissingStmt', kind='Stmt'),
24
Node('MissingType', kind='Type'),
0 commit comments