Skip to content

Commit fffaea1

Browse files
authored
Merge pull request #25925 from akyrtzi/syntax-classify-identifiers
[utils/gyb_syntax_support] Add the classification kind for identifiers
2 parents 0bdaa52 + 2979a14 commit fffaea1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/gyb_syntax_support/Token.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ def macro_name(self):
314314
classification='StringLiteral', serialization_code=113),
315315

316316
Misc('Unknown', 'unknown', serialization_code=115),
317-
Misc('Identifier', 'identifier', classification=None,
317+
Misc('Identifier', 'identifier', classification='Identifier',
318318
serialization_code=105),
319319
Misc('UnspacedBinaryOperator', 'oper_binary_unspaced',
320320
serialization_code=107),

0 commit comments

Comments
 (0)