diff --git a/.gitattributes b/.gitattributes index abb870e..c2f7711 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,5 +1,4 @@ -* text eol=lf -test/corpus/crlf.txt text eol=crlf +* text=auto eol=lf examples/* linguist-vendored diff --git a/grammar.js b/grammar.js index b4872d9..30b5dfa 100644 --- a/grammar.js +++ b/grammar.js @@ -504,28 +504,28 @@ module.exports = grammar({ array_declarator: $ => prec(1, seq( field('declarator', $._declarator), '[', - repeat($.type_qualifier), + repeat(choice($.type_qualifier, 'static')), field('size', optional(choice($._expression, '*'))), ']', )), array_field_declarator: $ => prec(1, seq( field('declarator', $._field_declarator), '[', - repeat($.type_qualifier), + repeat(choice($.type_qualifier, 'static')), field('size', optional(choice($._expression, '*'))), ']', )), array_type_declarator: $ => prec(1, seq( field('declarator', $._type_declarator), '[', - repeat($.type_qualifier), + repeat(choice($.type_qualifier, 'static')), field('size', optional(choice($._expression, '*'))), ']', )), abstract_array_declarator: $ => prec(1, seq( field('declarator', optional($._abstract_declarator)), '[', - repeat($.type_qualifier), + repeat(choice($.type_qualifier, 'static')), field('size', optional(choice($._expression, '*'))), ']', )), diff --git a/src/grammar.json b/src/grammar.json index dc6dd1b..2be4b76 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -4277,8 +4277,17 @@ { "type": "REPEAT", "content": { - "type": "SYMBOL", - "name": "type_qualifier" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_qualifier" + }, + { + "type": "STRING", + "value": "static" + } + ] } }, { @@ -4334,8 +4343,17 @@ { "type": "REPEAT", "content": { - "type": "SYMBOL", - "name": "type_qualifier" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_qualifier" + }, + { + "type": "STRING", + "value": "static" + } + ] } }, { @@ -4391,8 +4409,17 @@ { "type": "REPEAT", "content": { - "type": "SYMBOL", - "name": "type_qualifier" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_qualifier" + }, + { + "type": "STRING", + "value": "static" + } + ] } }, { @@ -4456,8 +4483,17 @@ { "type": "REPEAT", "content": { - "type": "SYMBOL", - "name": "type_qualifier" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_qualifier" + }, + { + "type": "STRING", + "value": "static" + } + ] } }, { diff --git a/src/parser.c b/src/parser.c index d0873d3..a04ac1f 100644 --- a/src/parser.c +++ b/src/parser.c @@ -15,7 +15,7 @@ #define LANGUAGE_VERSION 14 #define STATE_COUNT 2021 #define LARGE_STATE_COUNT 496 -#define SYMBOL_COUNT 348 +#define SYMBOL_COUNT 349 #define ALIAS_COUNT 3 #define TOKEN_COUNT 155 #define EXTERNAL_TOKEN_COUNT 0 @@ -93,9 +93,9 @@ enum ts_symbol_identifiers { anon_sym_long = 67, anon_sym_short = 68, anon_sym_LBRACK = 69, - anon_sym_RBRACK = 70, - anon_sym_EQ = 71, - anon_sym_static = 72, + anon_sym_static = 70, + anon_sym_RBRACK = 71, + anon_sym_EQ = 72, anon_sym_auto = 73, anon_sym_register = 74, anon_sym_inline = 75, @@ -353,27 +353,28 @@ enum ts_symbol_identifiers { aux_sym_attributed_declarator_repeat1 = 327, aux_sym_pointer_declarator_repeat1 = 328, aux_sym_function_declarator_repeat1 = 329, - aux_sym_sized_type_specifier_repeat1 = 330, - aux_sym_enumerator_list_repeat1 = 331, - aux_sym__field_declaration_declarator_repeat1 = 332, - aux_sym_parameter_list_repeat1 = 333, - aux_sym__old_style_parameter_list_repeat1 = 334, - aux_sym_case_statement_repeat1 = 335, - aux_sym_generic_expression_repeat1 = 336, - aux_sym_gnu_asm_expression_repeat1 = 337, - aux_sym_gnu_asm_output_operand_list_repeat1 = 338, - aux_sym_gnu_asm_input_operand_list_repeat1 = 339, - aux_sym_gnu_asm_clobber_list_repeat1 = 340, - aux_sym_gnu_asm_goto_list_repeat1 = 341, - aux_sym_argument_list_repeat1 = 342, - aux_sym_initializer_list_repeat1 = 343, - aux_sym_initializer_pair_repeat1 = 344, - aux_sym_char_literal_repeat1 = 345, - aux_sym_concatenated_string_repeat1 = 346, - aux_sym_string_literal_repeat1 = 347, - alias_sym_field_identifier = 348, - alias_sym_statement_identifier = 349, - alias_sym_type_identifier = 350, + aux_sym_array_declarator_repeat1 = 330, + aux_sym_sized_type_specifier_repeat1 = 331, + aux_sym_enumerator_list_repeat1 = 332, + aux_sym__field_declaration_declarator_repeat1 = 333, + aux_sym_parameter_list_repeat1 = 334, + aux_sym__old_style_parameter_list_repeat1 = 335, + aux_sym_case_statement_repeat1 = 336, + aux_sym_generic_expression_repeat1 = 337, + aux_sym_gnu_asm_expression_repeat1 = 338, + aux_sym_gnu_asm_output_operand_list_repeat1 = 339, + aux_sym_gnu_asm_input_operand_list_repeat1 = 340, + aux_sym_gnu_asm_clobber_list_repeat1 = 341, + aux_sym_gnu_asm_goto_list_repeat1 = 342, + aux_sym_argument_list_repeat1 = 343, + aux_sym_initializer_list_repeat1 = 344, + aux_sym_initializer_pair_repeat1 = 345, + aux_sym_char_literal_repeat1 = 346, + aux_sym_concatenated_string_repeat1 = 347, + aux_sym_string_literal_repeat1 = 348, + alias_sym_field_identifier = 349, + alias_sym_statement_identifier = 350, + alias_sym_type_identifier = 351, }; static const char * const ts_symbol_names[] = { @@ -447,9 +448,9 @@ static const char * const ts_symbol_names[] = { [anon_sym_long] = "long", [anon_sym_short] = "short", [anon_sym_LBRACK] = "[", + [anon_sym_static] = "static", [anon_sym_RBRACK] = "]", [anon_sym_EQ] = "=", - [anon_sym_static] = "static", [anon_sym_auto] = "auto", [anon_sym_register] = "register", [anon_sym_inline] = "inline", @@ -707,6 +708,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_attributed_declarator_repeat1] = "attributed_declarator_repeat1", [aux_sym_pointer_declarator_repeat1] = "pointer_declarator_repeat1", [aux_sym_function_declarator_repeat1] = "function_declarator_repeat1", + [aux_sym_array_declarator_repeat1] = "array_declarator_repeat1", [aux_sym_sized_type_specifier_repeat1] = "sized_type_specifier_repeat1", [aux_sym_enumerator_list_repeat1] = "enumerator_list_repeat1", [aux_sym__field_declaration_declarator_repeat1] = "_field_declaration_declarator_repeat1", @@ -801,9 +803,9 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_long] = anon_sym_long, [anon_sym_short] = anon_sym_short, [anon_sym_LBRACK] = anon_sym_LBRACK, + [anon_sym_static] = anon_sym_static, [anon_sym_RBRACK] = anon_sym_RBRACK, [anon_sym_EQ] = anon_sym_EQ, - [anon_sym_static] = anon_sym_static, [anon_sym_auto] = anon_sym_auto, [anon_sym_register] = anon_sym_register, [anon_sym_inline] = anon_sym_inline, @@ -1061,6 +1063,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_attributed_declarator_repeat1] = aux_sym_attributed_declarator_repeat1, [aux_sym_pointer_declarator_repeat1] = aux_sym_pointer_declarator_repeat1, [aux_sym_function_declarator_repeat1] = aux_sym_function_declarator_repeat1, + [aux_sym_array_declarator_repeat1] = aux_sym_array_declarator_repeat1, [aux_sym_sized_type_specifier_repeat1] = aux_sym_sized_type_specifier_repeat1, [aux_sym_enumerator_list_repeat1] = aux_sym_enumerator_list_repeat1, [aux_sym__field_declaration_declarator_repeat1] = aux_sym__field_declaration_declarator_repeat1, @@ -1365,15 +1368,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_RBRACK] = { + [anon_sym_static] = { .visible = true, .named = false, }, - [anon_sym_EQ] = { + [anon_sym_RBRACK] = { .visible = true, .named = false, }, - [anon_sym_static] = { + [anon_sym_EQ] = { .visible = true, .named = false, }, @@ -2411,6 +2414,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_array_declarator_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_sized_type_specifier_repeat1] = { .visible = false, .named = false, @@ -3338,15 +3345,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [169] = 121, [170] = 76, [171] = 76, - [172] = 106, + [172] = 114, [173] = 114, [174] = 113, - [175] = 114, + [175] = 106, [176] = 118, [177] = 102, - [178] = 100, + [178] = 113, [179] = 112, - [180] = 113, + [180] = 100, [181] = 121, [182] = 122, [183] = 123, @@ -3576,20 +3583,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [407] = 148, [408] = 155, [409] = 134, - [410] = 135, - [411] = 138, + [410] = 410, + [411] = 135, [412] = 132, - [413] = 139, - [414] = 136, - [415] = 415, + [413] = 138, + [414] = 139, + [415] = 136, [416] = 416, [417] = 141, [418] = 137, [419] = 149, - [420] = 146, - [421] = 152, + [420] = 133, + [421] = 146, [422] = 143, - [423] = 133, + [423] = 152, [424] = 154, [425] = 144, [426] = 147, @@ -3622,9 +3629,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [453] = 452, [454] = 452, [455] = 452, - [456] = 452, + [456] = 456, [457] = 452, - [458] = 458, + [458] = 452, [459] = 452, [460] = 452, [461] = 461, @@ -3645,21 +3652,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [476] = 476, [477] = 477, [478] = 478, - [479] = 479, + [479] = 478, [480] = 480, [481] = 481, [482] = 482, [483] = 483, - [484] = 480, + [484] = 484, [485] = 485, - [486] = 486, - [487] = 480, - [488] = 485, - [489] = 478, - [490] = 478, + [486] = 484, + [487] = 478, + [488] = 488, + [489] = 485, + [490] = 484, [491] = 485, - [492] = 486, - [493] = 486, + [492] = 488, + [493] = 488, [494] = 494, [495] = 495, [496] = 496, @@ -3667,39 +3674,39 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [498] = 498, [499] = 499, [500] = 500, - [501] = 501, + [501] = 500, [502] = 502, [503] = 503, - [504] = 500, - [505] = 505, + [504] = 502, + [505] = 499, [506] = 500, - [507] = 503, - [508] = 501, - [509] = 501, - [510] = 503, - [511] = 501, + [507] = 499, + [508] = 499, + [509] = 500, + [510] = 500, + [511] = 511, [512] = 512, - [513] = 503, - [514] = 501, - [515] = 515, + [513] = 502, + [514] = 514, + [515] = 499, [516] = 516, [517] = 517, [518] = 518, - [519] = 501, + [519] = 519, [520] = 520, - [521] = 500, - [522] = 503, + [521] = 502, + [522] = 499, [523] = 523, - [524] = 503, + [524] = 524, [525] = 525, - [526] = 526, + [526] = 500, [527] = 527, - [528] = 495, + [528] = 528, [529] = 529, [530] = 530, - [531] = 531, + [531] = 495, [532] = 532, - [533] = 495, + [533] = 533, [534] = 534, [535] = 535, [536] = 536, @@ -3707,18 +3714,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [538] = 538, [539] = 539, [540] = 540, - [541] = 532, + [541] = 541, [542] = 542, - [543] = 543, + [543] = 495, [544] = 544, - [545] = 545, + [545] = 532, [546] = 546, [547] = 547, [548] = 548, [549] = 549, [550] = 550, - [551] = 547, - [552] = 552, + [551] = 551, + [552] = 547, [553] = 553, [554] = 554, [555] = 555, @@ -3739,102 +3746,102 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [570] = 570, [571] = 571, [572] = 560, - [573] = 554, - [574] = 548, - [575] = 561, + [573] = 556, + [574] = 561, + [575] = 548, [576] = 549, [577] = 550, [578] = 562, [579] = 565, - [580] = 547, + [580] = 551, [581] = 566, [582] = 563, - [583] = 552, + [583] = 547, [584] = 553, - [585] = 555, - [586] = 586, - [587] = 548, - [588] = 588, - [589] = 586, - [590] = 549, - [591] = 550, - [592] = 552, - [593] = 553, + [585] = 548, + [586] = 549, + [587] = 587, + [588] = 550, + [589] = 589, + [590] = 587, + [591] = 551, + [592] = 553, + [593] = 554, [594] = 555, - [595] = 556, - [596] = 586, - [597] = 557, - [598] = 558, - [599] = 599, - [600] = 556, + [595] = 557, + [596] = 558, + [597] = 587, + [598] = 554, + [599] = 555, + [600] = 600, [601] = 557, - [602] = 562, - [603] = 565, - [604] = 558, - [605] = 563, - [606] = 561, - [607] = 560, - [608] = 558, - [609] = 557, - [610] = 556, + [602] = 558, + [603] = 562, + [604] = 565, + [605] = 605, + [606] = 563, + [607] = 561, + [608] = 560, + [609] = 558, + [610] = 557, [611] = 555, - [612] = 553, - [613] = 552, + [612] = 554, + [613] = 553, [614] = 547, - [615] = 550, - [616] = 548, - [617] = 561, - [618] = 618, + [615] = 551, + [616] = 550, + [617] = 548, + [618] = 561, [619] = 560, [620] = 561, - [621] = 560, - [622] = 599, - [623] = 558, - [624] = 624, - [625] = 625, - [626] = 557, - [627] = 560, - [628] = 556, + [621] = 621, + [622] = 560, + [623] = 600, + [624] = 558, + [625] = 563, + [626] = 565, + [627] = 557, + [628] = 560, [629] = 555, - [630] = 553, - [631] = 552, + [630] = 554, + [631] = 553, [632] = 547, - [633] = 550, - [634] = 549, - [635] = 548, - [636] = 554, - [637] = 563, - [638] = 565, - [639] = 562, + [633] = 551, + [634] = 550, + [635] = 549, + [636] = 548, + [637] = 556, + [638] = 562, + [639] = 639, [640] = 546, [641] = 548, - [642] = 642, - [643] = 549, + [642] = 549, + [643] = 643, [644] = 550, - [645] = 547, - [646] = 552, + [645] = 551, + [646] = 547, [647] = 553, - [648] = 555, - [649] = 556, + [648] = 554, + [649] = 555, [650] = 557, [651] = 558, [652] = 652, [653] = 549, [654] = 563, - [655] = 586, - [656] = 586, - [657] = 565, + [655] = 565, + [656] = 587, + [657] = 587, [658] = 562, [659] = 562, [660] = 565, [661] = 461, [662] = 662, [663] = 663, - [664] = 663, - [665] = 665, - [666] = 666, + [664] = 664, + [665] = 663, + [666] = 663, [667] = 663, - [668] = 663, + [668] = 668, [669] = 669, [670] = 670, [671] = 671, @@ -3849,129 +3856,129 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [680] = 680, [681] = 681, [682] = 682, - [683] = 683, - [684] = 684, - [685] = 684, - [686] = 447, - [687] = 446, + [683] = 682, + [684] = 447, + [685] = 685, + [686] = 446, + [687] = 687, [688] = 688, [689] = 689, [690] = 690, [691] = 691, [692] = 692, - [693] = 690, + [693] = 693, [694] = 688, - [695] = 695, + [695] = 693, [696] = 696, [697] = 697, - [698] = 688, - [699] = 690, + [698] = 698, + [699] = 699, [700] = 700, - [701] = 691, + [701] = 701, [702] = 702, - [703] = 695, + [703] = 688, [704] = 704, - [705] = 705, + [705] = 693, [706] = 706, - [707] = 695, - [708] = 691, - [709] = 695, - [710] = 688, - [711] = 711, - [712] = 691, - [713] = 690, + [707] = 707, + [708] = 708, + [709] = 693, + [710] = 700, + [711] = 699, + [712] = 712, + [713] = 713, [714] = 714, [715] = 715, - [716] = 716, - [717] = 717, + [716] = 700, + [717] = 699, [718] = 718, - [719] = 719, - [720] = 720, - [721] = 721, - [722] = 722, + [719] = 699, + [720] = 688, + [721] = 700, + [722] = 669, [723] = 723, [724] = 724, [725] = 725, [726] = 726, [727] = 727, - [728] = 669, + [728] = 728, [729] = 729, [730] = 730, [731] = 731, [732] = 732, [733] = 733, [734] = 734, - [735] = 683, - [736] = 736, + [735] = 735, + [736] = 687, [737] = 737, [738] = 669, [739] = 739, [740] = 740, [741] = 741, - [742] = 741, - [743] = 741, - [744] = 740, - [745] = 741, - [746] = 740, - [747] = 740, - [748] = 748, + [742] = 740, + [743] = 740, + [744] = 741, + [745] = 740, + [746] = 746, + [747] = 741, + [748] = 741, [749] = 749, [750] = 750, [751] = 751, - [752] = 752, - [753] = 748, + [752] = 751, + [753] = 751, [754] = 754, - [755] = 750, + [755] = 755, [756] = 756, - [757] = 757, - [758] = 748, - [759] = 759, - [760] = 748, - [761] = 748, + [757] = 751, + [758] = 758, + [759] = 746, + [760] = 760, + [761] = 751, [762] = 762, [763] = 763, - [764] = 669, + [764] = 764, [765] = 765, - [766] = 766, + [766] = 447, [767] = 767, [768] = 768, [769] = 769, [770] = 770, [771] = 771, - [772] = 772, - [773] = 446, - [774] = 774, - [775] = 447, + [772] = 446, + [773] = 773, + [774] = 669, + [775] = 775, [776] = 776, [777] = 777, [778] = 778, - [779] = 779, - [780] = 767, + [779] = 773, + [780] = 780, [781] = 781, [782] = 782, [783] = 783, [784] = 784, [785] = 785, - [786] = 786, - [787] = 787, - [788] = 788, - [789] = 763, - [790] = 770, + [786] = 768, + [787] = 777, + [788] = 763, + [789] = 776, + [790] = 775, [791] = 791, - [792] = 769, - [793] = 777, - [794] = 794, + [792] = 792, + [793] = 793, + [794] = 771, [795] = 795, - [796] = 768, - [797] = 774, - [798] = 766, + [796] = 765, + [797] = 769, + [798] = 767, [799] = 799, - [800] = 778, - [801] = 772, - [802] = 802, - [803] = 771, + [800] = 770, + [801] = 801, + [802] = 778, + [803] = 803, [804] = 804, - [805] = 765, + [805] = 805, [806] = 806, [807] = 807, [808] = 808, @@ -4006,117 +4013,117 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [837] = 837, [838] = 838, [839] = 839, - [840] = 799, + [840] = 840, [841] = 841, [842] = 842, [843] = 843, - [844] = 844, - [845] = 845, - [846] = 144, + [844] = 801, + [845] = 142, + [846] = 131, [847] = 847, [848] = 848, - [849] = 137, - [850] = 154, - [851] = 143, - [852] = 852, + [849] = 849, + [850] = 137, + [851] = 154, + [852] = 144, [853] = 853, [854] = 854, [855] = 855, [856] = 856, - [857] = 131, - [858] = 142, + [857] = 143, + [858] = 858, [859] = 859, [860] = 860, [861] = 861, [862] = 862, [863] = 863, - [864] = 864, + [864] = 863, [865] = 863, - [866] = 863, + [866] = 866, [867] = 863, - [868] = 727, - [869] = 722, - [870] = 772, - [871] = 771, + [868] = 737, + [869] = 777, + [870] = 870, + [871] = 765, [872] = 872, - [873] = 765, - [874] = 766, - [875] = 767, - [876] = 768, - [877] = 769, - [878] = 770, - [879] = 763, - [880] = 778, - [881] = 777, - [882] = 774, - [883] = 883, - [884] = 884, - [885] = 736, - [886] = 733, - [887] = 723, - [888] = 888, + [873] = 768, + [874] = 769, + [875] = 770, + [876] = 771, + [877] = 773, + [878] = 775, + [879] = 776, + [880] = 763, + [881] = 733, + [882] = 778, + [883] = 728, + [884] = 767, + [885] = 885, + [886] = 732, + [887] = 725, + [888] = 724, [889] = 889, - [890] = 737, - [891] = 732, - [892] = 671, - [893] = 670, - [894] = 726, - [895] = 799, - [896] = 724, - [897] = 729, - [898] = 861, - [899] = 862, - [900] = 154, - [901] = 855, - [902] = 902, - [903] = 860, - [904] = 845, - [905] = 137, - [906] = 848, - [907] = 852, - [908] = 855, - [909] = 909, + [890] = 890, + [891] = 670, + [892] = 730, + [893] = 727, + [894] = 801, + [895] = 729, + [896] = 671, + [897] = 726, + [898] = 860, + [899] = 853, + [900] = 861, + [901] = 862, + [902] = 137, + [903] = 848, + [904] = 847, + [905] = 855, + [906] = 906, + [907] = 858, + [908] = 859, + [909] = 860, [910] = 853, - [911] = 847, - [912] = 859, + [911] = 849, + [912] = 854, [913] = 862, [914] = 854, - [915] = 143, - [916] = 847, - [917] = 845, - [918] = 861, - [919] = 142, - [920] = 852, - [921] = 859, - [922] = 922, - [923] = 853, - [924] = 856, + [915] = 154, + [916] = 859, + [917] = 849, + [918] = 144, + [919] = 919, + [920] = 858, + [921] = 142, + [922] = 847, + [923] = 861, + [924] = 924, [925] = 848, - [926] = 854, - [927] = 142, - [928] = 928, - [929] = 902, - [930] = 902, - [931] = 856, - [932] = 902, - [933] = 144, - [934] = 131, + [926] = 926, + [927] = 143, + [928] = 919, + [929] = 919, + [930] = 856, + [931] = 855, + [932] = 919, + [933] = 142, + [934] = 144, [935] = 154, [936] = 137, [937] = 143, - [938] = 131, - [939] = 860, - [940] = 144, - [941] = 94, - [942] = 102, - [943] = 106, - [944] = 89, - [945] = 95, - [946] = 78, - [947] = 85, - [948] = 91, - [949] = 93, - [950] = 100, + [938] = 856, + [939] = 131, + [940] = 131, + [941] = 93, + [942] = 106, + [943] = 102, + [944] = 100, + [945] = 78, + [946] = 85, + [947] = 91, + [948] = 95, + [949] = 94, + [950] = 89, [951] = 951, [952] = 952, [953] = 953, @@ -4125,48 +4132,48 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [956] = 956, [957] = 957, [958] = 958, - [959] = 769, + [959] = 763, [960] = 778, - [961] = 763, - [962] = 774, - [963] = 963, + [961] = 765, + [962] = 768, + [963] = 769, [964] = 770, - [965] = 777, - [966] = 768, - [967] = 767, - [968] = 766, - [969] = 765, - [970] = 771, - [971] = 772, - [972] = 771, - [973] = 766, - [974] = 768, - [975] = 975, - [976] = 769, - [977] = 770, - [978] = 978, - [979] = 975, - [980] = 763, - [981] = 975, - [982] = 106, - [983] = 102, - [984] = 94, - [985] = 767, - [986] = 100, - [987] = 772, + [965] = 771, + [966] = 773, + [967] = 775, + [968] = 776, + [969] = 969, + [970] = 767, + [971] = 777, + [972] = 763, + [973] = 769, + [974] = 974, + [975] = 776, + [976] = 78, + [977] = 977, + [978] = 93, + [979] = 777, + [980] = 974, + [981] = 974, + [982] = 767, + [983] = 974, + [984] = 765, + [985] = 94, + [986] = 768, + [987] = 89, [988] = 95, [989] = 989, - [990] = 765, - [991] = 78, - [992] = 777, - [993] = 93, - [994] = 89, - [995] = 995, - [996] = 91, - [997] = 85, - [998] = 778, - [999] = 975, - [1000] = 774, + [990] = 100, + [991] = 770, + [992] = 771, + [993] = 773, + [994] = 91, + [995] = 85, + [996] = 996, + [997] = 106, + [998] = 102, + [999] = 778, + [1000] = 775, [1001] = 1001, [1002] = 1002, [1003] = 1003, @@ -4187,71 +4194,71 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1018] = 1018, [1019] = 1019, [1020] = 1020, - [1021] = 1019, - [1022] = 1022, - [1023] = 1022, - [1024] = 1024, + [1021] = 1021, + [1022] = 1019, + [1023] = 1023, + [1024] = 1021, [1025] = 1025, [1026] = 1026, - [1027] = 1027, + [1027] = 969, [1028] = 1028, [1029] = 1029, - [1030] = 768, + [1030] = 767, [1031] = 1031, [1032] = 1032, [1033] = 1033, [1034] = 1034, - [1035] = 1035, - [1036] = 767, - [1037] = 1037, + [1035] = 771, + [1036] = 1036, + [1037] = 775, [1038] = 1038, [1039] = 1039, - [1040] = 769, - [1041] = 1034, - [1042] = 1031, - [1043] = 1029, + [1040] = 770, + [1041] = 1041, + [1042] = 1032, + [1043] = 1043, [1044] = 1044, - [1045] = 766, - [1046] = 1031, + [1045] = 1041, + [1046] = 1046, [1047] = 1047, - [1048] = 765, + [1048] = 769, [1049] = 1049, - [1050] = 774, - [1051] = 771, - [1052] = 1035, - [1053] = 770, - [1054] = 1031, - [1055] = 1055, - [1056] = 1056, - [1057] = 1057, + [1050] = 1033, + [1051] = 776, + [1052] = 1041, + [1053] = 1053, + [1054] = 1034, + [1055] = 765, + [1056] = 768, + [1057] = 1032, [1058] = 1058, - [1059] = 777, - [1060] = 1029, - [1061] = 763, - [1062] = 1062, - [1063] = 772, + [1059] = 1059, + [1060] = 763, + [1061] = 1061, + [1062] = 777, + [1063] = 1063, [1064] = 1064, - [1065] = 1033, + [1065] = 1038, [1066] = 778, - [1067] = 1067, + [1067] = 1041, [1068] = 1068, [1069] = 1034, [1070] = 1070, - [1071] = 1035, - [1072] = 1072, - [1073] = 1029, - [1074] = 963, - [1075] = 1031, + [1071] = 1071, + [1072] = 1033, + [1073] = 1034, + [1074] = 773, + [1075] = 1041, [1076] = 1076, - [1077] = 1035, - [1078] = 1031, - [1079] = 1079, - [1080] = 1033, - [1081] = 1034, + [1077] = 1032, + [1078] = 1041, + [1079] = 1033, + [1080] = 1080, + [1081] = 1071, [1082] = 1082, - [1083] = 1068, - [1084] = 1084, - [1085] = 1033, + [1083] = 1083, + [1084] = 1038, + [1085] = 1038, [1086] = 1086, [1087] = 1087, [1088] = 1088, @@ -4261,33 +4268,33 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1092] = 1092, [1093] = 1093, [1094] = 1094, - [1095] = 1095, - [1096] = 1087, - [1097] = 1087, - [1098] = 1087, + [1095] = 1093, + [1096] = 1096, + [1097] = 1097, + [1098] = 1093, [1099] = 1099, [1100] = 1100, [1101] = 1101, [1102] = 1102, - [1103] = 1103, - [1104] = 1104, + [1103] = 1102, + [1104] = 1093, [1105] = 1105, [1106] = 1106, - [1107] = 1102, + [1107] = 1107, [1108] = 1108, [1109] = 1109, - [1110] = 1110, - [1111] = 1087, + [1110] = 1093, + [1111] = 1111, [1112] = 1112, - [1113] = 739, + [1113] = 1113, [1114] = 1114, [1115] = 1115, - [1116] = 864, - [1117] = 1117, - [1118] = 883, - [1119] = 909, - [1120] = 922, - [1121] = 928, + [1116] = 866, + [1117] = 885, + [1118] = 1118, + [1119] = 906, + [1120] = 924, + [1121] = 926, [1122] = 1122, [1123] = 1123, [1124] = 1124, @@ -4363,7 +4370,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1194] = 1179, [1195] = 1191, [1196] = 1196, - [1197] = 717, + [1197] = 689, [1198] = 1198, [1199] = 1199, [1200] = 1193, @@ -4388,9 +4395,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1219] = 1193, [1220] = 1211, [1221] = 1168, - [1222] = 717, + [1222] = 689, [1223] = 843, - [1224] = 1008, + [1224] = 1011, [1225] = 1225, [1226] = 1226, [1227] = 1175, @@ -4401,7 +4408,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1232] = 1232, [1233] = 1233, [1234] = 1225, - [1235] = 841, + [1235] = 842, [1236] = 1180, [1237] = 1237, [1238] = 1162, @@ -4415,26 +4422,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1246] = 1207, [1247] = 1164, [1248] = 1170, - [1249] = 811, + [1249] = 810, [1250] = 1225, - [1251] = 1012, + [1251] = 1010, [1252] = 1169, - [1253] = 812, + [1253] = 811, [1254] = 1237, [1255] = 1232, [1256] = 1256, [1257] = 1166, - [1258] = 813, + [1258] = 817, [1259] = 1192, - [1260] = 834, + [1260] = 833, [1261] = 835, [1262] = 1225, - [1263] = 816, + [1263] = 815, [1264] = 1165, - [1265] = 818, + [1265] = 814, [1266] = 1174, [1267] = 1267, - [1268] = 1014, + [1268] = 1012, [1269] = 1269, [1270] = 1270, [1271] = 1270, @@ -4447,7 +4454,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1278] = 1276, [1279] = 1276, [1280] = 1276, - [1281] = 864, + [1281] = 866, [1282] = 1277, [1283] = 1277, [1284] = 1277, @@ -4507,8 +4514,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1338] = 1338, [1339] = 1339, [1340] = 1340, - [1341] = 1327, - [1342] = 1342, + [1341] = 1341, + [1342] = 1327, [1343] = 1343, [1344] = 1344, [1345] = 1345, @@ -4524,40 +4531,40 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1355] = 1355, [1356] = 1356, [1357] = 1357, - [1358] = 1357, - [1359] = 1359, + [1358] = 1358, + [1359] = 1358, [1360] = 1360, [1361] = 1361, - [1362] = 1357, + [1362] = 1358, [1363] = 1363, [1364] = 1364, [1365] = 1365, [1366] = 1366, [1367] = 1367, [1368] = 1368, - [1369] = 1357, - [1370] = 1370, + [1369] = 1369, + [1370] = 1358, [1371] = 1371, [1372] = 1372, [1373] = 1373, [1374] = 1374, - [1375] = 1373, - [1376] = 1376, + [1375] = 1375, + [1376] = 1375, [1377] = 1373, - [1378] = 1376, + [1378] = 1375, [1379] = 1373, [1380] = 1380, - [1381] = 1381, + [1381] = 1373, [1382] = 1382, - [1383] = 1376, - [1384] = 1381, + [1383] = 1374, + [1384] = 1384, [1385] = 1385, - [1386] = 1386, + [1386] = 1374, [1387] = 1387, - [1388] = 1376, - [1389] = 1381, + [1388] = 1374, + [1389] = 1375, [1390] = 1390, - [1391] = 1381, + [1391] = 1391, [1392] = 1392, [1393] = 1393, [1394] = 1394, @@ -4568,22 +4575,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1399] = 1399, [1400] = 1400, [1401] = 1397, - [1402] = 1402, - [1403] = 1396, - [1404] = 1396, - [1405] = 1397, - [1406] = 1402, - [1407] = 1396, - [1408] = 1408, + [1402] = 1400, + [1403] = 1392, + [1404] = 1392, + [1405] = 1405, + [1406] = 1392, + [1407] = 1407, + [1408] = 1397, [1409] = 1409, [1410] = 1410, - [1411] = 1397, - [1412] = 1412, - [1413] = 1413, - [1414] = 1402, + [1411] = 1411, + [1412] = 1400, + [1413] = 1397, + [1414] = 1400, [1415] = 1415, [1416] = 1416, - [1417] = 1402, + [1417] = 1417, [1418] = 1418, [1419] = 1419, [1420] = 1420, @@ -4626,26 +4633,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1457] = 1457, [1458] = 1458, [1459] = 1459, - [1460] = 1459, - [1461] = 1459, + [1460] = 1460, + [1461] = 1458, [1462] = 1462, - [1463] = 1463, + [1463] = 1444, [1464] = 1464, [1465] = 1465, - [1466] = 1444, + [1466] = 1458, [1467] = 1467, - [1468] = 1459, + [1468] = 1444, [1469] = 1469, - [1470] = 1459, - [1471] = 1444, - [1472] = 1444, + [1470] = 1444, + [1471] = 1471, + [1472] = 1458, [1473] = 1473, [1474] = 1474, [1475] = 1475, [1476] = 1476, - [1477] = 1459, + [1477] = 1458, [1478] = 1478, - [1479] = 1479, + [1479] = 1458, [1480] = 1444, [1481] = 1481, [1482] = 1482, @@ -4764,9 +4771,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1595] = 1595, [1596] = 1594, [1597] = 1597, - [1598] = 1598, + [1598] = 1577, [1599] = 1599, - [1600] = 1577, + [1600] = 1600, [1601] = 1572, [1602] = 1602, [1603] = 1603, @@ -4776,7 +4783,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1607] = 1594, [1608] = 1578, [1609] = 1577, - [1610] = 1413, + [1610] = 1411, [1611] = 1611, [1612] = 1612, [1613] = 1613, @@ -5028,7 +5035,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1859] = 1859, [1860] = 1860, [1861] = 1801, - [1862] = 1008, + [1862] = 1011, [1863] = 1863, [1864] = 1864, [1865] = 1865, @@ -5044,7 +5051,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1875] = 1812, [1876] = 1796, [1877] = 1877, - [1878] = 1012, + [1878] = 1010, [1879] = 1879, [1880] = 1782, [1881] = 1881, @@ -5076,7 +5083,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1907] = 1907, [1908] = 1812, [1909] = 1799, - [1910] = 670, + [1910] = 671, [1911] = 1801, [1912] = 1789, [1913] = 1913, @@ -5141,7 +5148,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1972] = 1882, [1973] = 1837, [1974] = 1837, - [1975] = 671, + [1975] = 670, [1976] = 1976, [1977] = 1782, [1978] = 1830, @@ -5171,7 +5178,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2002] = 1894, [2003] = 1805, [2004] = 1017, - [2005] = 1014, + [2005] = 1012, [2006] = 2006, [2007] = 1806, [2008] = 1789, @@ -5473,19 +5480,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(107); END_STATE(); case 11: - if (lookahead == '\n') SKIP(52); + if (lookahead == '\n') SKIP(53); END_STATE(); case 12: - if (lookahead == '\n') SKIP(52); + if (lookahead == '\n') SKIP(53); if (lookahead == '\r') SKIP(11); if (lookahead == 'U') ADVANCE(115); if (lookahead == 'u') ADVANCE(107); END_STATE(); case 13: - if (lookahead == '\n') SKIP(53); + if (lookahead == '\n') SKIP(52); END_STATE(); case 14: - if (lookahead == '\n') SKIP(53); + if (lookahead == '\n') SKIP(52); if (lookahead == '\r') SKIP(13); if (lookahead == 'U') ADVANCE(115); if (lookahead == 'u') ADVANCE(107); @@ -5960,28 +5967,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 52: ADVANCE_MAP( '!', 68, - '#', 76, - '%', 204, - '&', 213, + '#', 80, + '%', 203, + '&', 212, '(', 185, ')', 127, - '*', 200, - '+', 197, + '*', 199, + '+', 194, ',', 126, - '-', 192, - '.', 252, - '/', 202, - ':', 237, + '-', 189, + '/', 201, ';', 226, - '<', 220, + '<', 221, '=', 236, - '>', 216, - '?', 238, + '>', 217, '[', 233, - '\\', 12, - '^', 210, + '\\', 14, + '^', 209, '{', 230, - '|', 207, + '|', 208, '}', 231, ); if (('\t' <= lookahead && lookahead <= '\r') || @@ -5991,25 +5995,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 53: ADVANCE_MAP( '!', 68, - '#', 78, - '%', 203, - '&', 212, + '#', 76, + '%', 204, + '&', 213, '(', 185, ')', 127, - '*', 199, - '+', 194, + '*', 200, + '+', 197, ',', 126, - '-', 189, - '/', 201, + '-', 192, + '.', 252, + '/', 202, + ':', 237, ';', 226, - '<', 221, + '<', 220, '=', 236, - '>', 217, + '>', 216, + '?', 238, '[', 233, - '\\', 14, - '^', 209, + '\\', 12, + '^', 210, '{', 230, - '|', 208, + '|', 207, + '}', 231, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(53); @@ -6044,11 +6052,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(310); END_STATE(); case 57: - if (lookahead == '#') ADVANCE(80); + if (lookahead == '#') ADVANCE(78); if (lookahead == '/') ADVANCE(60); if (lookahead == '[') ADVANCE(73); if (lookahead == '\\') ADVANCE(16); - if (lookahead == '}') ADVANCE(231); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(57); if (set_contains(sym_identifier_character_set_1, 670, lookahead)) ADVANCE(310); @@ -9831,14 +9838,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [453] = {.lex_state = 49}, [454] = {.lex_state = 49}, [455] = {.lex_state = 49}, - [456] = {.lex_state = 49}, + [456] = {.lex_state = 119}, [457] = {.lex_state = 49}, - [458] = {.lex_state = 119}, + [458] = {.lex_state = 49}, [459] = {.lex_state = 49}, [460] = {.lex_state = 49}, [461] = {.lex_state = 49}, [462] = {.lex_state = 49}, - [463] = {.lex_state = 52}, + [463] = {.lex_state = 53}, [464] = {.lex_state = 119}, [465] = {.lex_state = 119}, [466] = {.lex_state = 119}, @@ -9853,24 +9860,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [475] = {.lex_state = 119}, [476] = {.lex_state = 119}, [477] = {.lex_state = 119}, - [478] = {.lex_state = 52}, - [479] = {.lex_state = 52}, - [480] = {.lex_state = 52}, - [481] = {.lex_state = 52}, - [482] = {.lex_state = 52}, - [483] = {.lex_state = 52}, - [484] = {.lex_state = 52}, - [485] = {.lex_state = 52}, - [486] = {.lex_state = 52}, - [487] = {.lex_state = 52}, - [488] = {.lex_state = 52}, - [489] = {.lex_state = 52}, - [490] = {.lex_state = 52}, - [491] = {.lex_state = 52}, - [492] = {.lex_state = 52}, - [493] = {.lex_state = 52}, - [494] = {.lex_state = 52}, - [495] = {.lex_state = 52}, + [478] = {.lex_state = 53}, + [479] = {.lex_state = 53}, + [480] = {.lex_state = 53}, + [481] = {.lex_state = 53}, + [482] = {.lex_state = 53}, + [483] = {.lex_state = 53}, + [484] = {.lex_state = 53}, + [485] = {.lex_state = 53}, + [486] = {.lex_state = 53}, + [487] = {.lex_state = 53}, + [488] = {.lex_state = 53}, + [489] = {.lex_state = 53}, + [490] = {.lex_state = 53}, + [491] = {.lex_state = 53}, + [492] = {.lex_state = 53}, + [493] = {.lex_state = 53}, + [494] = {.lex_state = 53}, + [495] = {.lex_state = 53}, [496] = {.lex_state = 119}, [497] = {.lex_state = 119}, [498] = {.lex_state = 119}, @@ -9902,19 +9909,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [524] = {.lex_state = 119}, [525] = {.lex_state = 119}, [526] = {.lex_state = 119}, - [527] = {.lex_state = 53}, - [528] = {.lex_state = 53}, - [529] = {.lex_state = 119}, + [527] = {.lex_state = 52}, + [528] = {.lex_state = 119}, + [529] = {.lex_state = 57}, [530] = {.lex_state = 119}, - [531] = {.lex_state = 119}, + [531] = {.lex_state = 52}, [532] = {.lex_state = 119}, - [533] = {.lex_state = 57}, - [534] = {.lex_state = 57}, - [535] = {.lex_state = 119}, - [536] = {.lex_state = 119}, + [533] = {.lex_state = 119}, + [534] = {.lex_state = 119}, + [535] = {.lex_state = 52}, + [536] = {.lex_state = 57}, [537] = {.lex_state = 119}, [538] = {.lex_state = 119}, - [539] = {.lex_state = 53}, + [539] = {.lex_state = 119}, [540] = {.lex_state = 119}, [541] = {.lex_state = 119}, [542] = {.lex_state = 119}, @@ -10038,12 +10045,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [660] = {.lex_state = 119}, [661] = {.lex_state = 49}, [662] = {.lex_state = 49}, - [663] = {.lex_state = 52}, - [664] = {.lex_state = 52}, - [665] = {.lex_state = 49}, - [666] = {.lex_state = 49}, - [667] = {.lex_state = 52}, - [668] = {.lex_state = 52}, + [663] = {.lex_state = 53}, + [664] = {.lex_state = 49}, + [665] = {.lex_state = 53}, + [666] = {.lex_state = 53}, + [667] = {.lex_state = 53}, + [668] = {.lex_state = 49}, [669] = {.lex_state = 49}, [670] = {.lex_state = 49}, [671] = {.lex_state = 49}, @@ -10057,197 +10064,197 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [679] = {.lex_state = 50}, [680] = {.lex_state = 50}, [681] = {.lex_state = 50}, - [682] = {.lex_state = 52}, - [683] = {.lex_state = 49}, - [684] = {.lex_state = 50}, - [685] = {.lex_state = 119}, + [682] = {.lex_state = 119}, + [683] = {.lex_state = 50}, + [684] = {.lex_state = 119}, + [685] = {.lex_state = 53}, [686] = {.lex_state = 119}, - [687] = {.lex_state = 119}, - [688] = {.lex_state = 52}, - [689] = {.lex_state = 52}, - [690] = {.lex_state = 52}, - [691] = {.lex_state = 52}, - [692] = {.lex_state = 50}, - [693] = {.lex_state = 52}, - [694] = {.lex_state = 52}, - [695] = {.lex_state = 52}, + [687] = {.lex_state = 49}, + [688] = {.lex_state = 53}, + [689] = {.lex_state = 50}, + [690] = {.lex_state = 50}, + [691] = {.lex_state = 50}, + [692] = {.lex_state = 53}, + [693] = {.lex_state = 53}, + [694] = {.lex_state = 53}, + [695] = {.lex_state = 53}, [696] = {.lex_state = 50}, [697] = {.lex_state = 50}, - [698] = {.lex_state = 52}, - [699] = {.lex_state = 52}, - [700] = {.lex_state = 50}, - [701] = {.lex_state = 52}, + [698] = {.lex_state = 53}, + [699] = {.lex_state = 53}, + [700] = {.lex_state = 53}, + [701] = {.lex_state = 50}, [702] = {.lex_state = 50}, - [703] = {.lex_state = 52}, + [703] = {.lex_state = 53}, [704] = {.lex_state = 50}, - [705] = {.lex_state = 50}, - [706] = {.lex_state = 52}, - [707] = {.lex_state = 52}, - [708] = {.lex_state = 52}, - [709] = {.lex_state = 52}, - [710] = {.lex_state = 52}, - [711] = {.lex_state = 50}, - [712] = {.lex_state = 52}, - [713] = {.lex_state = 52}, + [705] = {.lex_state = 53}, + [706] = {.lex_state = 50}, + [707] = {.lex_state = 50}, + [708] = {.lex_state = 50}, + [709] = {.lex_state = 53}, + [710] = {.lex_state = 53}, + [711] = {.lex_state = 53}, + [712] = {.lex_state = 50}, + [713] = {.lex_state = 50}, [714] = {.lex_state = 50}, [715] = {.lex_state = 50}, - [716] = {.lex_state = 50}, - [717] = {.lex_state = 50}, + [716] = {.lex_state = 53}, + [717] = {.lex_state = 53}, [718] = {.lex_state = 50}, - [719] = {.lex_state = 50}, - [720] = {.lex_state = 50}, - [721] = {.lex_state = 50}, - [722] = {.lex_state = 50}, - [723] = {.lex_state = 50}, - [724] = {.lex_state = 51}, - [725] = {.lex_state = 52}, + [719] = {.lex_state = 53}, + [720] = {.lex_state = 53}, + [721] = {.lex_state = 53}, + [722] = {.lex_state = 49}, + [723] = {.lex_state = 53}, + [724] = {.lex_state = 50}, + [725] = {.lex_state = 50}, [726] = {.lex_state = 51}, - [727] = {.lex_state = 50}, - [728] = {.lex_state = 49}, + [727] = {.lex_state = 51}, + [728] = {.lex_state = 50}, [729] = {.lex_state = 51}, - [730] = {.lex_state = 52}, - [731] = {.lex_state = 52}, - [732] = {.lex_state = 51}, + [730] = {.lex_state = 51}, + [731] = {.lex_state = 53}, + [732] = {.lex_state = 50}, [733] = {.lex_state = 50}, - [734] = {.lex_state = 52}, - [735] = {.lex_state = 49}, - [736] = {.lex_state = 50}, + [734] = {.lex_state = 53}, + [735] = {.lex_state = 53}, + [736] = {.lex_state = 49}, [737] = {.lex_state = 50}, [738] = {.lex_state = 49}, [739] = {.lex_state = 119}, - [740] = {.lex_state = 52}, - [741] = {.lex_state = 52}, - [742] = {.lex_state = 52}, - [743] = {.lex_state = 52}, - [744] = {.lex_state = 52}, - [745] = {.lex_state = 52}, - [746] = {.lex_state = 52}, - [747] = {.lex_state = 52}, - [748] = {.lex_state = 49}, - [749] = {.lex_state = 52}, - [750] = {.lex_state = 119}, - [751] = {.lex_state = 52}, - [752] = {.lex_state = 52}, + [740] = {.lex_state = 53}, + [741] = {.lex_state = 53}, + [742] = {.lex_state = 53}, + [743] = {.lex_state = 53}, + [744] = {.lex_state = 53}, + [745] = {.lex_state = 53}, + [746] = {.lex_state = 119}, + [747] = {.lex_state = 53}, + [748] = {.lex_state = 53}, + [749] = {.lex_state = 53}, + [750] = {.lex_state = 53}, + [751] = {.lex_state = 49}, + [752] = {.lex_state = 49}, [753] = {.lex_state = 49}, - [754] = {.lex_state = 52}, - [755] = {.lex_state = 52}, - [756] = {.lex_state = 52}, - [757] = {.lex_state = 52}, - [758] = {.lex_state = 49}, - [759] = {.lex_state = 49}, - [760] = {.lex_state = 49}, + [754] = {.lex_state = 49}, + [755] = {.lex_state = 53}, + [756] = {.lex_state = 53}, + [757] = {.lex_state = 49}, + [758] = {.lex_state = 53}, + [759] = {.lex_state = 53}, + [760] = {.lex_state = 53}, [761] = {.lex_state = 49}, - [762] = {.lex_state = 52}, + [762] = {.lex_state = 53}, [763] = {.lex_state = 50}, - [764] = {.lex_state = 49}, + [764] = {.lex_state = 53}, [765] = {.lex_state = 50}, - [766] = {.lex_state = 50}, + [766] = {.lex_state = 53}, [767] = {.lex_state = 50}, [768] = {.lex_state = 50}, [769] = {.lex_state = 50}, [770] = {.lex_state = 50}, [771] = {.lex_state = 50}, - [772] = {.lex_state = 50}, - [773] = {.lex_state = 52}, - [774] = {.lex_state = 50}, - [775] = {.lex_state = 52}, - [776] = {.lex_state = 52}, + [772] = {.lex_state = 53}, + [773] = {.lex_state = 50}, + [774] = {.lex_state = 49}, + [775] = {.lex_state = 50}, + [776] = {.lex_state = 50}, [777] = {.lex_state = 50}, [778] = {.lex_state = 50}, - [779] = {.lex_state = 52}, - [780] = {.lex_state = 52}, - [781] = {.lex_state = 52}, - [782] = {.lex_state = 52}, - [783] = {.lex_state = 52}, - [784] = {.lex_state = 52}, - [785] = {.lex_state = 52}, - [786] = {.lex_state = 52}, - [787] = {.lex_state = 52}, - [788] = {.lex_state = 52}, - [789] = {.lex_state = 52}, - [790] = {.lex_state = 52}, - [791] = {.lex_state = 52}, - [792] = {.lex_state = 52}, - [793] = {.lex_state = 52}, - [794] = {.lex_state = 52}, - [795] = {.lex_state = 52}, - [796] = {.lex_state = 52}, - [797] = {.lex_state = 52}, - [798] = {.lex_state = 52}, - [799] = {.lex_state = 50}, - [800] = {.lex_state = 52}, - [801] = {.lex_state = 52}, - [802] = {.lex_state = 52}, - [803] = {.lex_state = 52}, - [804] = {.lex_state = 52}, - [805] = {.lex_state = 52}, - [806] = {.lex_state = 52}, - [807] = {.lex_state = 52}, - [808] = {.lex_state = 52}, - [809] = {.lex_state = 52}, - [810] = {.lex_state = 52}, - [811] = {.lex_state = 52}, - [812] = {.lex_state = 52}, - [813] = {.lex_state = 52}, - [814] = {.lex_state = 52}, - [815] = {.lex_state = 52}, - [816] = {.lex_state = 52}, - [817] = {.lex_state = 52}, - [818] = {.lex_state = 52}, - [819] = {.lex_state = 52}, - [820] = {.lex_state = 52}, - [821] = {.lex_state = 52}, - [822] = {.lex_state = 52}, - [823] = {.lex_state = 52}, - [824] = {.lex_state = 52}, - [825] = {.lex_state = 52}, - [826] = {.lex_state = 52}, - [827] = {.lex_state = 52}, - [828] = {.lex_state = 52}, - [829] = {.lex_state = 52}, - [830] = {.lex_state = 52}, - [831] = {.lex_state = 52}, - [832] = {.lex_state = 52}, - [833] = {.lex_state = 52}, - [834] = {.lex_state = 52}, - [835] = {.lex_state = 52}, - [836] = {.lex_state = 52}, - [837] = {.lex_state = 52}, - [838] = {.lex_state = 52}, - [839] = {.lex_state = 52}, - [840] = {.lex_state = 52}, - [841] = {.lex_state = 52}, - [842] = {.lex_state = 52}, - [843] = {.lex_state = 52}, - [844] = {.lex_state = 52}, - [845] = {.lex_state = 52}, - [846] = {.lex_state = 52}, - [847] = {.lex_state = 52}, - [848] = {.lex_state = 52}, - [849] = {.lex_state = 52}, - [850] = {.lex_state = 52}, - [851] = {.lex_state = 52}, - [852] = {.lex_state = 52}, - [853] = {.lex_state = 52}, - [854] = {.lex_state = 52}, - [855] = {.lex_state = 52}, - [856] = {.lex_state = 52}, - [857] = {.lex_state = 52}, - [858] = {.lex_state = 52}, - [859] = {.lex_state = 52}, - [860] = {.lex_state = 52}, - [861] = {.lex_state = 52}, - [862] = {.lex_state = 52}, - [863] = {.lex_state = 52}, - [864] = {.lex_state = 52}, - [865] = {.lex_state = 52}, - [866] = {.lex_state = 52}, - [867] = {.lex_state = 52}, + [779] = {.lex_state = 53}, + [780] = {.lex_state = 53}, + [781] = {.lex_state = 53}, + [782] = {.lex_state = 53}, + [783] = {.lex_state = 53}, + [784] = {.lex_state = 53}, + [785] = {.lex_state = 53}, + [786] = {.lex_state = 53}, + [787] = {.lex_state = 53}, + [788] = {.lex_state = 53}, + [789] = {.lex_state = 53}, + [790] = {.lex_state = 53}, + [791] = {.lex_state = 53}, + [792] = {.lex_state = 53}, + [793] = {.lex_state = 53}, + [794] = {.lex_state = 53}, + [795] = {.lex_state = 53}, + [796] = {.lex_state = 53}, + [797] = {.lex_state = 53}, + [798] = {.lex_state = 53}, + [799] = {.lex_state = 53}, + [800] = {.lex_state = 53}, + [801] = {.lex_state = 50}, + [802] = {.lex_state = 53}, + [803] = {.lex_state = 53}, + [804] = {.lex_state = 53}, + [805] = {.lex_state = 53}, + [806] = {.lex_state = 53}, + [807] = {.lex_state = 53}, + [808] = {.lex_state = 53}, + [809] = {.lex_state = 53}, + [810] = {.lex_state = 53}, + [811] = {.lex_state = 53}, + [812] = {.lex_state = 53}, + [813] = {.lex_state = 53}, + [814] = {.lex_state = 53}, + [815] = {.lex_state = 53}, + [816] = {.lex_state = 53}, + [817] = {.lex_state = 53}, + [818] = {.lex_state = 53}, + [819] = {.lex_state = 53}, + [820] = {.lex_state = 53}, + [821] = {.lex_state = 53}, + [822] = {.lex_state = 53}, + [823] = {.lex_state = 53}, + [824] = {.lex_state = 53}, + [825] = {.lex_state = 53}, + [826] = {.lex_state = 53}, + [827] = {.lex_state = 53}, + [828] = {.lex_state = 53}, + [829] = {.lex_state = 53}, + [830] = {.lex_state = 53}, + [831] = {.lex_state = 53}, + [832] = {.lex_state = 53}, + [833] = {.lex_state = 53}, + [834] = {.lex_state = 53}, + [835] = {.lex_state = 53}, + [836] = {.lex_state = 53}, + [837] = {.lex_state = 53}, + [838] = {.lex_state = 53}, + [839] = {.lex_state = 53}, + [840] = {.lex_state = 53}, + [841] = {.lex_state = 53}, + [842] = {.lex_state = 53}, + [843] = {.lex_state = 53}, + [844] = {.lex_state = 53}, + [845] = {.lex_state = 53}, + [846] = {.lex_state = 53}, + [847] = {.lex_state = 53}, + [848] = {.lex_state = 53}, + [849] = {.lex_state = 53}, + [850] = {.lex_state = 53}, + [851] = {.lex_state = 53}, + [852] = {.lex_state = 53}, + [853] = {.lex_state = 53}, + [854] = {.lex_state = 53}, + [855] = {.lex_state = 53}, + [856] = {.lex_state = 53}, + [857] = {.lex_state = 53}, + [858] = {.lex_state = 53}, + [859] = {.lex_state = 53}, + [860] = {.lex_state = 53}, + [861] = {.lex_state = 53}, + [862] = {.lex_state = 53}, + [863] = {.lex_state = 53}, + [864] = {.lex_state = 53}, + [865] = {.lex_state = 53}, + [866] = {.lex_state = 53}, + [867] = {.lex_state = 53}, [868] = {.lex_state = 49}, [869] = {.lex_state = 49}, - [870] = {.lex_state = 49}, + [870] = {.lex_state = 53}, [871] = {.lex_state = 49}, - [872] = {.lex_state = 52}, + [872] = {.lex_state = 53}, [873] = {.lex_state = 49}, [874] = {.lex_state = 49}, [875] = {.lex_state = 49}, @@ -10258,64 +10265,64 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [880] = {.lex_state = 49}, [881] = {.lex_state = 49}, [882] = {.lex_state = 49}, - [883] = {.lex_state = 52}, - [884] = {.lex_state = 52}, - [885] = {.lex_state = 49}, + [883] = {.lex_state = 49}, + [884] = {.lex_state = 49}, + [885] = {.lex_state = 53}, [886] = {.lex_state = 49}, [887] = {.lex_state = 49}, - [888] = {.lex_state = 52}, - [889] = {.lex_state = 52}, - [890] = {.lex_state = 49}, - [891] = {.lex_state = 49}, - [892] = {.lex_state = 52}, - [893] = {.lex_state = 52}, + [888] = {.lex_state = 49}, + [889] = {.lex_state = 53}, + [890] = {.lex_state = 53}, + [891] = {.lex_state = 53}, + [892] = {.lex_state = 49}, + [893] = {.lex_state = 49}, [894] = {.lex_state = 49}, [895] = {.lex_state = 49}, - [896] = {.lex_state = 49}, + [896] = {.lex_state = 53}, [897] = {.lex_state = 49}, - [898] = {.lex_state = 53}, - [899] = {.lex_state = 57}, - [900] = {.lex_state = 53}, - [901] = {.lex_state = 57}, - [902] = {.lex_state = 49}, - [903] = {.lex_state = 53}, + [898] = {.lex_state = 52}, + [899] = {.lex_state = 52}, + [900] = {.lex_state = 57}, + [901] = {.lex_state = 52}, + [902] = {.lex_state = 57}, + [903] = {.lex_state = 57}, [904] = {.lex_state = 57}, - [905] = {.lex_state = 53}, + [905] = {.lex_state = 57}, [906] = {.lex_state = 53}, - [907] = {.lex_state = 53}, - [908] = {.lex_state = 53}, - [909] = {.lex_state = 52}, - [910] = {.lex_state = 53}, + [907] = {.lex_state = 57}, + [908] = {.lex_state = 57}, + [909] = {.lex_state = 57}, + [910] = {.lex_state = 57}, [911] = {.lex_state = 57}, - [912] = {.lex_state = 53}, - [913] = {.lex_state = 53}, - [914] = {.lex_state = 53}, - [915] = {.lex_state = 53}, - [916] = {.lex_state = 53}, - [917] = {.lex_state = 53}, - [918] = {.lex_state = 57}, - [919] = {.lex_state = 53}, - [920] = {.lex_state = 57}, - [921] = {.lex_state = 57}, + [912] = {.lex_state = 57}, + [913] = {.lex_state = 57}, + [914] = {.lex_state = 52}, + [915] = {.lex_state = 57}, + [916] = {.lex_state = 52}, + [917] = {.lex_state = 52}, + [918] = {.lex_state = 52}, + [919] = {.lex_state = 49}, + [920] = {.lex_state = 52}, + [921] = {.lex_state = 52}, [922] = {.lex_state = 52}, - [923] = {.lex_state = 57}, + [923] = {.lex_state = 52}, [924] = {.lex_state = 53}, - [925] = {.lex_state = 57}, - [926] = {.lex_state = 57}, + [925] = {.lex_state = 52}, + [926] = {.lex_state = 53}, [927] = {.lex_state = 57}, - [928] = {.lex_state = 52}, + [928] = {.lex_state = 49}, [929] = {.lex_state = 49}, - [930] = {.lex_state = 49}, - [931] = {.lex_state = 57}, + [930] = {.lex_state = 52}, + [931] = {.lex_state = 52}, [932] = {.lex_state = 49}, - [933] = {.lex_state = 53}, - [934] = {.lex_state = 53}, - [935] = {.lex_state = 57}, - [936] = {.lex_state = 57}, - [937] = {.lex_state = 57}, + [933] = {.lex_state = 57}, + [934] = {.lex_state = 57}, + [935] = {.lex_state = 52}, + [936] = {.lex_state = 52}, + [937] = {.lex_state = 52}, [938] = {.lex_state = 57}, [939] = {.lex_state = 57}, - [940] = {.lex_state = 57}, + [940] = {.lex_state = 52}, [941] = {.lex_state = 119}, [942] = {.lex_state = 119}, [943] = {.lex_state = 119}, @@ -10326,14 +10333,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [948] = {.lex_state = 119}, [949] = {.lex_state = 119}, [950] = {.lex_state = 119}, - [951] = {.lex_state = 52}, - [952] = {.lex_state = 52}, - [953] = {.lex_state = 52}, - [954] = {.lex_state = 52}, - [955] = {.lex_state = 52}, - [956] = {.lex_state = 52}, - [957] = {.lex_state = 52}, - [958] = {.lex_state = 52}, + [951] = {.lex_state = 53}, + [952] = {.lex_state = 53}, + [953] = {.lex_state = 53}, + [954] = {.lex_state = 53}, + [955] = {.lex_state = 53}, + [956] = {.lex_state = 53}, + [957] = {.lex_state = 53}, + [958] = {.lex_state = 53}, [959] = {.lex_state = 50}, [960] = {.lex_state = 50}, [961] = {.lex_state = 50}, @@ -10347,55 +10354,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [969] = {.lex_state = 50}, [970] = {.lex_state = 50}, [971] = {.lex_state = 50}, - [972] = {.lex_state = 52}, - [973] = {.lex_state = 52}, - [974] = {.lex_state = 52}, - [975] = {.lex_state = 52}, - [976] = {.lex_state = 52}, - [977] = {.lex_state = 52}, - [978] = {.lex_state = 52}, - [979] = {.lex_state = 52}, - [980] = {.lex_state = 52}, - [981] = {.lex_state = 52}, - [982] = {.lex_state = 52}, - [983] = {.lex_state = 52}, - [984] = {.lex_state = 52}, - [985] = {.lex_state = 52}, - [986] = {.lex_state = 52}, - [987] = {.lex_state = 52}, - [988] = {.lex_state = 52}, - [989] = {.lex_state = 52}, - [990] = {.lex_state = 52}, - [991] = {.lex_state = 52}, - [992] = {.lex_state = 52}, - [993] = {.lex_state = 52}, - [994] = {.lex_state = 52}, - [995] = {.lex_state = 52}, - [996] = {.lex_state = 52}, - [997] = {.lex_state = 52}, - [998] = {.lex_state = 52}, - [999] = {.lex_state = 52}, - [1000] = {.lex_state = 52}, - [1001] = {.lex_state = 52}, - [1002] = {.lex_state = 52}, - [1003] = {.lex_state = 52}, - [1004] = {.lex_state = 52}, - [1005] = {.lex_state = 52}, - [1006] = {.lex_state = 52}, - [1007] = {.lex_state = 52}, + [972] = {.lex_state = 53}, + [973] = {.lex_state = 53}, + [974] = {.lex_state = 53}, + [975] = {.lex_state = 53}, + [976] = {.lex_state = 53}, + [977] = {.lex_state = 53}, + [978] = {.lex_state = 53}, + [979] = {.lex_state = 53}, + [980] = {.lex_state = 53}, + [981] = {.lex_state = 53}, + [982] = {.lex_state = 53}, + [983] = {.lex_state = 53}, + [984] = {.lex_state = 53}, + [985] = {.lex_state = 53}, + [986] = {.lex_state = 53}, + [987] = {.lex_state = 53}, + [988] = {.lex_state = 53}, + [989] = {.lex_state = 53}, + [990] = {.lex_state = 53}, + [991] = {.lex_state = 53}, + [992] = {.lex_state = 53}, + [993] = {.lex_state = 53}, + [994] = {.lex_state = 53}, + [995] = {.lex_state = 53}, + [996] = {.lex_state = 53}, + [997] = {.lex_state = 53}, + [998] = {.lex_state = 53}, + [999] = {.lex_state = 53}, + [1000] = {.lex_state = 53}, + [1001] = {.lex_state = 53}, + [1002] = {.lex_state = 53}, + [1003] = {.lex_state = 53}, + [1004] = {.lex_state = 53}, + [1005] = {.lex_state = 53}, + [1006] = {.lex_state = 53}, + [1007] = {.lex_state = 53}, [1008] = {.lex_state = 53}, - [1009] = {.lex_state = 52}, + [1009] = {.lex_state = 53}, [1010] = {.lex_state = 52}, [1011] = {.lex_state = 52}, - [1012] = {.lex_state = 53}, - [1013] = {.lex_state = 52}, + [1012] = {.lex_state = 52}, + [1013] = {.lex_state = 53}, [1014] = {.lex_state = 53}, - [1015] = {.lex_state = 52}, - [1016] = {.lex_state = 52}, - [1017] = {.lex_state = 53}, + [1015] = {.lex_state = 53}, + [1016] = {.lex_state = 53}, + [1017] = {.lex_state = 52}, [1018] = {.lex_state = 49}, [1019] = {.lex_state = 49}, - [1020] = {.lex_state = 52}, + [1020] = {.lex_state = 53}, [1021] = {.lex_state = 49}, [1022] = {.lex_state = 49}, [1023] = {.lex_state = 49}, @@ -10403,41 +10410,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1025] = {.lex_state = 49}, [1026] = {.lex_state = 49}, [1027] = {.lex_state = 49}, - [1028] = {.lex_state = 52}, - [1029] = {.lex_state = 52}, + [1028] = {.lex_state = 53}, + [1029] = {.lex_state = 49}, [1030] = {.lex_state = 49}, - [1031] = {.lex_state = 49}, - [1032] = {.lex_state = 49}, - [1033] = {.lex_state = 49}, + [1031] = {.lex_state = 53}, + [1032] = {.lex_state = 53}, + [1033] = {.lex_state = 53}, [1034] = {.lex_state = 49}, - [1035] = {.lex_state = 52}, - [1036] = {.lex_state = 49}, - [1037] = {.lex_state = 52}, - [1038] = {.lex_state = 52}, + [1035] = {.lex_state = 49}, + [1036] = {.lex_state = 53}, + [1037] = {.lex_state = 49}, + [1038] = {.lex_state = 49}, [1039] = {.lex_state = 49}, [1040] = {.lex_state = 49}, [1041] = {.lex_state = 49}, - [1042] = {.lex_state = 49}, - [1043] = {.lex_state = 52}, + [1042] = {.lex_state = 53}, + [1043] = {.lex_state = 53}, [1044] = {.lex_state = 49}, [1045] = {.lex_state = 49}, [1046] = {.lex_state = 49}, [1047] = {.lex_state = 49}, [1048] = {.lex_state = 49}, [1049] = {.lex_state = 49}, - [1050] = {.lex_state = 49}, + [1050] = {.lex_state = 53}, [1051] = {.lex_state = 49}, - [1052] = {.lex_state = 52}, + [1052] = {.lex_state = 49}, [1053] = {.lex_state = 49}, [1054] = {.lex_state = 49}, [1055] = {.lex_state = 49}, [1056] = {.lex_state = 49}, - [1057] = {.lex_state = 49}, + [1057] = {.lex_state = 53}, [1058] = {.lex_state = 49}, [1059] = {.lex_state = 49}, - [1060] = {.lex_state = 52}, - [1061] = {.lex_state = 49}, - [1062] = {.lex_state = 52}, + [1060] = {.lex_state = 49}, + [1061] = {.lex_state = 53}, + [1062] = {.lex_state = 49}, [1063] = {.lex_state = 49}, [1064] = {.lex_state = 49}, [1065] = {.lex_state = 49}, @@ -10446,15 +10453,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1068] = {.lex_state = 49}, [1069] = {.lex_state = 49}, [1070] = {.lex_state = 49}, - [1071] = {.lex_state = 52}, - [1072] = {.lex_state = 52}, - [1073] = {.lex_state = 52}, + [1071] = {.lex_state = 49}, + [1072] = {.lex_state = 53}, + [1073] = {.lex_state = 49}, [1074] = {.lex_state = 49}, [1075] = {.lex_state = 49}, [1076] = {.lex_state = 49}, - [1077] = {.lex_state = 52}, + [1077] = {.lex_state = 53}, [1078] = {.lex_state = 49}, - [1079] = {.lex_state = 49}, + [1079] = {.lex_state = 53}, [1080] = {.lex_state = 49}, [1081] = {.lex_state = 49}, [1082] = {.lex_state = 49}, @@ -10464,7 +10471,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1086] = {.lex_state = 49}, [1087] = {.lex_state = 49}, [1088] = {.lex_state = 49}, - [1089] = {.lex_state = 52}, + [1089] = {.lex_state = 53}, [1090] = {.lex_state = 49}, [1091] = {.lex_state = 49}, [1092] = {.lex_state = 49}, @@ -10474,92 +10481,92 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1096] = {.lex_state = 49}, [1097] = {.lex_state = 49}, [1098] = {.lex_state = 49}, - [1099] = {.lex_state = 52}, + [1099] = {.lex_state = 53}, [1100] = {.lex_state = 49}, [1101] = {.lex_state = 49}, - [1102] = {.lex_state = 52}, - [1103] = {.lex_state = 49}, + [1102] = {.lex_state = 53}, + [1103] = {.lex_state = 53}, [1104] = {.lex_state = 49}, - [1105] = {.lex_state = 52}, + [1105] = {.lex_state = 53}, [1106] = {.lex_state = 49}, - [1107] = {.lex_state = 52}, - [1108] = {.lex_state = 52}, - [1109] = {.lex_state = 52}, - [1110] = {.lex_state = 52}, + [1107] = {.lex_state = 53}, + [1108] = {.lex_state = 53}, + [1109] = {.lex_state = 53}, + [1110] = {.lex_state = 49}, [1111] = {.lex_state = 49}, [1112] = {.lex_state = 49}, - [1113] = {.lex_state = 52}, - [1114] = {.lex_state = 49}, + [1113] = {.lex_state = 49}, + [1114] = {.lex_state = 53}, [1115] = {.lex_state = 49}, - [1116] = {.lex_state = 52}, - [1117] = {.lex_state = 49}, - [1118] = {.lex_state = 52}, - [1119] = {.lex_state = 52}, - [1120] = {.lex_state = 52}, - [1121] = {.lex_state = 52}, - [1122] = {.lex_state = 52}, - [1123] = {.lex_state = 52}, - [1124] = {.lex_state = 52}, - [1125] = {.lex_state = 52}, - [1126] = {.lex_state = 52}, - [1127] = {.lex_state = 52}, - [1128] = {.lex_state = 52}, - [1129] = {.lex_state = 52}, - [1130] = {.lex_state = 52}, - [1131] = {.lex_state = 52}, - [1132] = {.lex_state = 52}, - [1133] = {.lex_state = 52}, - [1134] = {.lex_state = 52}, - [1135] = {.lex_state = 52}, - [1136] = {.lex_state = 52}, - [1137] = {.lex_state = 52}, - [1138] = {.lex_state = 52}, - [1139] = {.lex_state = 52}, - [1140] = {.lex_state = 53}, - [1141] = {.lex_state = 52}, - [1142] = {.lex_state = 52}, - [1143] = {.lex_state = 52}, - [1144] = {.lex_state = 52}, - [1145] = {.lex_state = 52}, + [1116] = {.lex_state = 53}, + [1117] = {.lex_state = 53}, + [1118] = {.lex_state = 49}, + [1119] = {.lex_state = 53}, + [1120] = {.lex_state = 53}, + [1121] = {.lex_state = 53}, + [1122] = {.lex_state = 53}, + [1123] = {.lex_state = 53}, + [1124] = {.lex_state = 53}, + [1125] = {.lex_state = 53}, + [1126] = {.lex_state = 53}, + [1127] = {.lex_state = 53}, + [1128] = {.lex_state = 53}, + [1129] = {.lex_state = 53}, + [1130] = {.lex_state = 53}, + [1131] = {.lex_state = 53}, + [1132] = {.lex_state = 53}, + [1133] = {.lex_state = 53}, + [1134] = {.lex_state = 53}, + [1135] = {.lex_state = 53}, + [1136] = {.lex_state = 53}, + [1137] = {.lex_state = 53}, + [1138] = {.lex_state = 53}, + [1139] = {.lex_state = 53}, + [1140] = {.lex_state = 52}, + [1141] = {.lex_state = 53}, + [1142] = {.lex_state = 53}, + [1143] = {.lex_state = 53}, + [1144] = {.lex_state = 53}, + [1145] = {.lex_state = 53}, [1146] = {.lex_state = 48}, - [1147] = {.lex_state = 52}, - [1148] = {.lex_state = 53}, - [1149] = {.lex_state = 52}, - [1150] = {.lex_state = 53}, + [1147] = {.lex_state = 53}, + [1148] = {.lex_state = 52}, + [1149] = {.lex_state = 53}, + [1150] = {.lex_state = 52}, [1151] = {.lex_state = 25}, [1152] = {.lex_state = 48}, - [1153] = {.lex_state = 52}, - [1154] = {.lex_state = 52}, - [1155] = {.lex_state = 52}, - [1156] = {.lex_state = 52}, - [1157] = {.lex_state = 53}, - [1158] = {.lex_state = 52}, + [1153] = {.lex_state = 53}, + [1154] = {.lex_state = 53}, + [1155] = {.lex_state = 53}, + [1156] = {.lex_state = 53}, + [1157] = {.lex_state = 52}, + [1158] = {.lex_state = 53}, [1159] = {.lex_state = 48}, - [1160] = {.lex_state = 53}, + [1160] = {.lex_state = 52}, [1161] = {.lex_state = 48}, - [1162] = {.lex_state = 53}, - [1163] = {.lex_state = 53}, - [1164] = {.lex_state = 53}, - [1165] = {.lex_state = 53}, - [1166] = {.lex_state = 53}, + [1162] = {.lex_state = 52}, + [1163] = {.lex_state = 52}, + [1164] = {.lex_state = 52}, + [1165] = {.lex_state = 52}, + [1166] = {.lex_state = 52}, [1167] = {.lex_state = 48}, - [1168] = {.lex_state = 53}, - [1169] = {.lex_state = 53}, - [1170] = {.lex_state = 53}, + [1168] = {.lex_state = 52}, + [1169] = {.lex_state = 52}, + [1170] = {.lex_state = 52}, [1171] = {.lex_state = 48}, [1172] = {.lex_state = 48}, [1173] = {.lex_state = 48}, - [1174] = {.lex_state = 53}, - [1175] = {.lex_state = 53}, - [1176] = {.lex_state = 52}, + [1174] = {.lex_state = 52}, + [1175] = {.lex_state = 52}, + [1176] = {.lex_state = 53}, [1177] = {.lex_state = 48}, [1178] = {.lex_state = 48}, [1179] = {.lex_state = 48}, - [1180] = {.lex_state = 53}, + [1180] = {.lex_state = 52}, [1181] = {.lex_state = 48}, [1182] = {.lex_state = 48}, [1183] = {.lex_state = 48}, - [1184] = {.lex_state = 52}, + [1184] = {.lex_state = 53}, [1185] = {.lex_state = 48}, [1186] = {.lex_state = 48}, [1187] = {.lex_state = 48}, @@ -10567,13 +10574,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1189] = {.lex_state = 48}, [1190] = {.lex_state = 48}, [1191] = {.lex_state = 48}, - [1192] = {.lex_state = 53}, + [1192] = {.lex_state = 52}, [1193] = {.lex_state = 48}, [1194] = {.lex_state = 48}, [1195] = {.lex_state = 48}, - [1196] = {.lex_state = 52}, - [1197] = {.lex_state = 53}, - [1198] = {.lex_state = 52}, + [1196] = {.lex_state = 53}, + [1197] = {.lex_state = 52}, + [1198] = {.lex_state = 53}, [1199] = {.lex_state = 48}, [1200] = {.lex_state = 48}, [1201] = {.lex_state = 48}, @@ -10582,316 +10589,316 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1204] = {.lex_state = 48}, [1205] = {.lex_state = 48}, [1206] = {.lex_state = 48}, - [1207] = {.lex_state = 53}, + [1207] = {.lex_state = 52}, [1208] = {.lex_state = 48}, [1209] = {.lex_state = 48}, [1210] = {.lex_state = 48}, - [1211] = {.lex_state = 53}, + [1211] = {.lex_state = 52}, [1212] = {.lex_state = 48}, [1213] = {.lex_state = 48}, [1214] = {.lex_state = 48}, [1215] = {.lex_state = 48}, [1216] = {.lex_state = 48}, [1217] = {.lex_state = 48}, - [1218] = {.lex_state = 52}, + [1218] = {.lex_state = 53}, [1219] = {.lex_state = 48}, [1220] = {.lex_state = 25}, [1221] = {.lex_state = 25}, [1222] = {.lex_state = 25}, - [1223] = {.lex_state = 52}, + [1223] = {.lex_state = 53}, [1224] = {.lex_state = 25}, [1225] = {.lex_state = 25}, - [1226] = {.lex_state = 52}, + [1226] = {.lex_state = 53}, [1227] = {.lex_state = 25}, - [1228] = {.lex_state = 52}, - [1229] = {.lex_state = 52}, + [1228] = {.lex_state = 53}, + [1229] = {.lex_state = 53}, [1230] = {.lex_state = 25}, [1231] = {.lex_state = 25}, [1232] = {.lex_state = 25}, [1233] = {.lex_state = 25}, [1234] = {.lex_state = 25}, - [1235] = {.lex_state = 52}, + [1235] = {.lex_state = 53}, [1236] = {.lex_state = 25}, - [1237] = {.lex_state = 53}, + [1237] = {.lex_state = 52}, [1238] = {.lex_state = 25}, - [1239] = {.lex_state = 52}, + [1239] = {.lex_state = 53}, [1240] = {.lex_state = 25}, [1241] = {.lex_state = 25}, [1242] = {.lex_state = 25}, [1243] = {.lex_state = 25}, [1244] = {.lex_state = 25}, - [1245] = {.lex_state = 52}, + [1245] = {.lex_state = 53}, [1246] = {.lex_state = 25}, [1247] = {.lex_state = 25}, [1248] = {.lex_state = 25}, - [1249] = {.lex_state = 52}, + [1249] = {.lex_state = 53}, [1250] = {.lex_state = 25}, [1251] = {.lex_state = 25}, [1252] = {.lex_state = 25}, - [1253] = {.lex_state = 52}, - [1254] = {.lex_state = 53}, + [1253] = {.lex_state = 53}, + [1254] = {.lex_state = 52}, [1255] = {.lex_state = 25}, [1256] = {.lex_state = 25}, [1257] = {.lex_state = 25}, - [1258] = {.lex_state = 52}, + [1258] = {.lex_state = 53}, [1259] = {.lex_state = 25}, - [1260] = {.lex_state = 52}, - [1261] = {.lex_state = 52}, + [1260] = {.lex_state = 53}, + [1261] = {.lex_state = 53}, [1262] = {.lex_state = 25}, - [1263] = {.lex_state = 52}, + [1263] = {.lex_state = 53}, [1264] = {.lex_state = 25}, - [1265] = {.lex_state = 52}, + [1265] = {.lex_state = 53}, [1266] = {.lex_state = 25}, [1267] = {.lex_state = 25}, [1268] = {.lex_state = 25}, - [1269] = {.lex_state = 52}, - [1270] = {.lex_state = 52}, - [1271] = {.lex_state = 52}, - [1272] = {.lex_state = 52}, - [1273] = {.lex_state = 52}, - [1274] = {.lex_state = 52}, - [1275] = {.lex_state = 52}, - [1276] = {.lex_state = 52}, - [1277] = {.lex_state = 52}, - [1278] = {.lex_state = 52}, - [1279] = {.lex_state = 52}, - [1280] = {.lex_state = 52}, - [1281] = {.lex_state = 52}, - [1282] = {.lex_state = 52}, - [1283] = {.lex_state = 52}, - [1284] = {.lex_state = 52}, - [1285] = {.lex_state = 52}, - [1286] = {.lex_state = 52}, - [1287] = {.lex_state = 52}, - [1288] = {.lex_state = 52}, - [1289] = {.lex_state = 52}, + [1269] = {.lex_state = 53}, + [1270] = {.lex_state = 53}, + [1271] = {.lex_state = 53}, + [1272] = {.lex_state = 53}, + [1273] = {.lex_state = 53}, + [1274] = {.lex_state = 53}, + [1275] = {.lex_state = 53}, + [1276] = {.lex_state = 53}, + [1277] = {.lex_state = 53}, + [1278] = {.lex_state = 53}, + [1279] = {.lex_state = 53}, + [1280] = {.lex_state = 53}, + [1281] = {.lex_state = 53}, + [1282] = {.lex_state = 53}, + [1283] = {.lex_state = 53}, + [1284] = {.lex_state = 53}, + [1285] = {.lex_state = 53}, + [1286] = {.lex_state = 53}, + [1287] = {.lex_state = 53}, + [1288] = {.lex_state = 53}, + [1289] = {.lex_state = 53}, [1290] = {.lex_state = 50}, - [1291] = {.lex_state = 52}, - [1292] = {.lex_state = 52}, - [1293] = {.lex_state = 52}, + [1291] = {.lex_state = 53}, + [1292] = {.lex_state = 53}, + [1293] = {.lex_state = 53}, [1294] = {.lex_state = 50}, - [1295] = {.lex_state = 52}, - [1296] = {.lex_state = 52}, - [1297] = {.lex_state = 52}, + [1295] = {.lex_state = 53}, + [1296] = {.lex_state = 53}, + [1297] = {.lex_state = 53}, [1298] = {.lex_state = 50}, - [1299] = {.lex_state = 52}, + [1299] = {.lex_state = 53}, [1300] = {.lex_state = 50}, - [1301] = {.lex_state = 52}, - [1302] = {.lex_state = 52}, - [1303] = {.lex_state = 52}, - [1304] = {.lex_state = 52}, - [1305] = {.lex_state = 52}, - [1306] = {.lex_state = 52}, - [1307] = {.lex_state = 52}, - [1308] = {.lex_state = 52}, - [1309] = {.lex_state = 52}, + [1301] = {.lex_state = 53}, + [1302] = {.lex_state = 53}, + [1303] = {.lex_state = 53}, + [1304] = {.lex_state = 53}, + [1305] = {.lex_state = 53}, + [1306] = {.lex_state = 53}, + [1307] = {.lex_state = 53}, + [1308] = {.lex_state = 53}, + [1309] = {.lex_state = 53}, [1310] = {.lex_state = 56}, - [1311] = {.lex_state = 52}, - [1312] = {.lex_state = 52}, - [1313] = {.lex_state = 52}, - [1314] = {.lex_state = 52}, - [1315] = {.lex_state = 52}, - [1316] = {.lex_state = 52}, + [1311] = {.lex_state = 53}, + [1312] = {.lex_state = 53}, + [1313] = {.lex_state = 53}, + [1314] = {.lex_state = 53}, + [1315] = {.lex_state = 53}, + [1316] = {.lex_state = 53}, [1317] = {.lex_state = 56}, - [1318] = {.lex_state = 52}, - [1319] = {.lex_state = 52}, - [1320] = {.lex_state = 52}, - [1321] = {.lex_state = 52}, - [1322] = {.lex_state = 52}, - [1323] = {.lex_state = 52}, - [1324] = {.lex_state = 52}, + [1318] = {.lex_state = 53}, + [1319] = {.lex_state = 53}, + [1320] = {.lex_state = 53}, + [1321] = {.lex_state = 53}, + [1322] = {.lex_state = 53}, + [1323] = {.lex_state = 53}, + [1324] = {.lex_state = 53}, [1325] = {.lex_state = 50}, [1326] = {.lex_state = 50}, - [1327] = {.lex_state = 52}, - [1328] = {.lex_state = 56}, - [1329] = {.lex_state = 50}, + [1327] = {.lex_state = 53}, + [1328] = {.lex_state = 50}, + [1329] = {.lex_state = 53}, [1330] = {.lex_state = 50}, [1331] = {.lex_state = 50}, - [1332] = {.lex_state = 52}, - [1333] = {.lex_state = 52}, - [1334] = {.lex_state = 52}, - [1335] = {.lex_state = 52}, - [1336] = {.lex_state = 50}, - [1337] = {.lex_state = 52}, + [1332] = {.lex_state = 50}, + [1333] = {.lex_state = 53}, + [1334] = {.lex_state = 53}, + [1335] = {.lex_state = 53}, + [1336] = {.lex_state = 53}, + [1337] = {.lex_state = 53}, [1338] = {.lex_state = 50}, [1339] = {.lex_state = 50}, - [1340] = {.lex_state = 52}, - [1341] = {.lex_state = 52}, - [1342] = {.lex_state = 52}, - [1343] = {.lex_state = 49}, - [1344] = {.lex_state = 52}, + [1340] = {.lex_state = 53}, + [1341] = {.lex_state = 50}, + [1342] = {.lex_state = 53}, + [1343] = {.lex_state = 53}, + [1344] = {.lex_state = 49}, [1345] = {.lex_state = 50}, [1346] = {.lex_state = 50}, - [1347] = {.lex_state = 52}, + [1347] = {.lex_state = 53}, [1348] = {.lex_state = 50}, - [1349] = {.lex_state = 50}, - [1350] = {.lex_state = 52}, + [1349] = {.lex_state = 56}, + [1350] = {.lex_state = 53}, [1351] = {.lex_state = 50}, [1352] = {.lex_state = 50}, - [1353] = {.lex_state = 52}, - [1354] = {.lex_state = 52}, - [1355] = {.lex_state = 52}, - [1356] = {.lex_state = 52}, - [1357] = {.lex_state = 119}, + [1353] = {.lex_state = 53}, + [1354] = {.lex_state = 53}, + [1355] = {.lex_state = 0}, + [1356] = {.lex_state = 53}, + [1357] = {.lex_state = 53}, [1358] = {.lex_state = 119}, - [1359] = {.lex_state = 52}, - [1360] = {.lex_state = 52}, - [1361] = {.lex_state = 52}, + [1359] = {.lex_state = 119}, + [1360] = {.lex_state = 53}, + [1361] = {.lex_state = 53}, [1362] = {.lex_state = 119}, - [1363] = {.lex_state = 52}, - [1364] = {.lex_state = 52}, - [1365] = {.lex_state = 0}, - [1366] = {.lex_state = 52}, - [1367] = {.lex_state = 52}, - [1368] = {.lex_state = 52}, - [1369] = {.lex_state = 119}, - [1370] = {.lex_state = 0}, - [1371] = {.lex_state = 52}, - [1372] = {.lex_state = 52}, + [1363] = {.lex_state = 53}, + [1364] = {.lex_state = 53}, + [1365] = {.lex_state = 53}, + [1366] = {.lex_state = 0}, + [1367] = {.lex_state = 53}, + [1368] = {.lex_state = 53}, + [1369] = {.lex_state = 53}, + [1370] = {.lex_state = 119}, + [1371] = {.lex_state = 53}, + [1372] = {.lex_state = 53}, [1373] = {.lex_state = 119}, - [1374] = {.lex_state = 52}, + [1374] = {.lex_state = 54}, [1375] = {.lex_state = 119}, [1376] = {.lex_state = 119}, [1377] = {.lex_state = 119}, [1378] = {.lex_state = 119}, [1379] = {.lex_state = 119}, [1380] = {.lex_state = 49}, - [1381] = {.lex_state = 54}, - [1382] = {.lex_state = 49}, - [1383] = {.lex_state = 119}, - [1384] = {.lex_state = 54}, - [1385] = {.lex_state = 52}, - [1386] = {.lex_state = 52}, + [1381] = {.lex_state = 119}, + [1382] = {.lex_state = 53}, + [1383] = {.lex_state = 54}, + [1384] = {.lex_state = 53}, + [1385] = {.lex_state = 49}, + [1386] = {.lex_state = 54}, [1387] = {.lex_state = 49}, - [1388] = {.lex_state = 119}, - [1389] = {.lex_state = 54}, + [1388] = {.lex_state = 54}, + [1389] = {.lex_state = 119}, [1390] = {.lex_state = 119}, - [1391] = {.lex_state = 54}, - [1392] = {.lex_state = 52}, - [1393] = {.lex_state = 52}, + [1391] = {.lex_state = 53}, + [1392] = {.lex_state = 119}, + [1393] = {.lex_state = 53}, [1394] = {.lex_state = 119}, - [1395] = {.lex_state = 52}, - [1396] = {.lex_state = 119}, + [1395] = {.lex_state = 53}, + [1396] = {.lex_state = 53}, [1397] = {.lex_state = 119}, - [1398] = {.lex_state = 52}, - [1399] = {.lex_state = 52}, - [1400] = {.lex_state = 52}, + [1398] = {.lex_state = 53}, + [1399] = {.lex_state = 53}, + [1400] = {.lex_state = 119}, [1401] = {.lex_state = 119}, [1402] = {.lex_state = 119}, [1403] = {.lex_state = 119}, [1404] = {.lex_state = 119}, - [1405] = {.lex_state = 119}, + [1405] = {.lex_state = 53}, [1406] = {.lex_state = 119}, - [1407] = {.lex_state = 119}, - [1408] = {.lex_state = 0}, + [1407] = {.lex_state = 53}, + [1408] = {.lex_state = 119}, [1409] = {.lex_state = 50}, [1410] = {.lex_state = 50}, - [1411] = {.lex_state = 119}, - [1412] = {.lex_state = 52}, - [1413] = {.lex_state = 50}, + [1411] = {.lex_state = 50}, + [1412] = {.lex_state = 119}, + [1413] = {.lex_state = 119}, [1414] = {.lex_state = 119}, - [1415] = {.lex_state = 52}, - [1416] = {.lex_state = 52}, - [1417] = {.lex_state = 119}, + [1415] = {.lex_state = 53}, + [1416] = {.lex_state = 0}, + [1417] = {.lex_state = 53}, [1418] = {.lex_state = 0}, - [1419] = {.lex_state = 52}, - [1420] = {.lex_state = 50}, + [1419] = {.lex_state = 53}, + [1420] = {.lex_state = 53}, [1421] = {.lex_state = 119}, - [1422] = {.lex_state = 52}, - [1423] = {.lex_state = 52}, - [1424] = {.lex_state = 52}, + [1422] = {.lex_state = 53}, + [1423] = {.lex_state = 53}, + [1424] = {.lex_state = 53}, [1425] = {.lex_state = 119}, - [1426] = {.lex_state = 52}, - [1427] = {.lex_state = 119}, - [1428] = {.lex_state = 52}, - [1429] = {.lex_state = 119}, - [1430] = {.lex_state = 0}, - [1431] = {.lex_state = 119}, - [1432] = {.lex_state = 52}, - [1433] = {.lex_state = 52}, - [1434] = {.lex_state = 52}, - [1435] = {.lex_state = 52}, - [1436] = {.lex_state = 52}, + [1426] = {.lex_state = 53}, + [1427] = {.lex_state = 53}, + [1428] = {.lex_state = 119}, + [1429] = {.lex_state = 0}, + [1430] = {.lex_state = 119}, + [1431] = {.lex_state = 53}, + [1432] = {.lex_state = 119}, + [1433] = {.lex_state = 53}, + [1434] = {.lex_state = 53}, + [1435] = {.lex_state = 53}, + [1436] = {.lex_state = 53}, [1437] = {.lex_state = 119}, - [1438] = {.lex_state = 52}, + [1438] = {.lex_state = 53}, [1439] = {.lex_state = 119}, [1440] = {.lex_state = 0}, - [1441] = {.lex_state = 52}, - [1442] = {.lex_state = 52}, - [1443] = {.lex_state = 52}, - [1444] = {.lex_state = 52}, - [1445] = {.lex_state = 52}, + [1441] = {.lex_state = 53}, + [1442] = {.lex_state = 50}, + [1443] = {.lex_state = 53}, + [1444] = {.lex_state = 53}, + [1445] = {.lex_state = 53}, [1446] = {.lex_state = 119}, - [1447] = {.lex_state = 119}, - [1448] = {.lex_state = 56}, + [1447] = {.lex_state = 56}, + [1448] = {.lex_state = 119}, [1449] = {.lex_state = 119}, - [1450] = {.lex_state = 52}, - [1451] = {.lex_state = 119}, - [1452] = {.lex_state = 0}, + [1450] = {.lex_state = 53}, + [1451] = {.lex_state = 0}, + [1452] = {.lex_state = 56}, [1453] = {.lex_state = 56}, [1454] = {.lex_state = 56}, [1455] = {.lex_state = 56}, - [1456] = {.lex_state = 56}, + [1456] = {.lex_state = 0}, [1457] = {.lex_state = 0}, - [1458] = {.lex_state = 0}, - [1459] = {.lex_state = 52}, - [1460] = {.lex_state = 52}, - [1461] = {.lex_state = 52}, + [1458] = {.lex_state = 53}, + [1459] = {.lex_state = 119}, + [1460] = {.lex_state = 53}, + [1461] = {.lex_state = 53}, [1462] = {.lex_state = 56}, - [1463] = {.lex_state = 52}, + [1463] = {.lex_state = 53}, [1464] = {.lex_state = 56}, [1465] = {.lex_state = 50}, - [1466] = {.lex_state = 52}, + [1466] = {.lex_state = 53}, [1467] = {.lex_state = 56}, - [1468] = {.lex_state = 52}, + [1468] = {.lex_state = 53}, [1469] = {.lex_state = 119}, - [1470] = {.lex_state = 52}, - [1471] = {.lex_state = 52}, - [1472] = {.lex_state = 52}, + [1470] = {.lex_state = 53}, + [1471] = {.lex_state = 56}, + [1472] = {.lex_state = 53}, [1473] = {.lex_state = 119}, [1474] = {.lex_state = 119}, [1475] = {.lex_state = 119}, [1476] = {.lex_state = 56}, - [1477] = {.lex_state = 52}, + [1477] = {.lex_state = 53}, [1478] = {.lex_state = 56}, - [1479] = {.lex_state = 56}, - [1480] = {.lex_state = 52}, + [1479] = {.lex_state = 53}, + [1480] = {.lex_state = 53}, [1481] = {.lex_state = 119}, [1482] = {.lex_state = 119}, - [1483] = {.lex_state = 52}, + [1483] = {.lex_state = 119}, [1484] = {.lex_state = 119}, [1485] = {.lex_state = 45}, - [1486] = {.lex_state = 119}, + [1486] = {.lex_state = 53}, [1487] = {.lex_state = 119}, [1488] = {.lex_state = 119}, [1489] = {.lex_state = 119}, [1490] = {.lex_state = 119}, - [1491] = {.lex_state = 119}, + [1491] = {.lex_state = 53}, [1492] = {.lex_state = 119}, - [1493] = {.lex_state = 50}, - [1494] = {.lex_state = 52}, - [1495] = {.lex_state = 119}, + [1493] = {.lex_state = 119}, + [1494] = {.lex_state = 50}, + [1495] = {.lex_state = 53}, [1496] = {.lex_state = 119}, [1497] = {.lex_state = 119}, - [1498] = {.lex_state = 52}, - [1499] = {.lex_state = 52}, + [1498] = {.lex_state = 119}, + [1499] = {.lex_state = 53}, [1500] = {.lex_state = 119}, - [1501] = {.lex_state = 52}, + [1501] = {.lex_state = 53}, [1502] = {.lex_state = 30}, - [1503] = {.lex_state = 52}, - [1504] = {.lex_state = 52}, - [1505] = {.lex_state = 52}, + [1503] = {.lex_state = 53}, + [1504] = {.lex_state = 53}, + [1505] = {.lex_state = 53}, [1506] = {.lex_state = 0}, - [1507] = {.lex_state = 52}, - [1508] = {.lex_state = 52}, + [1507] = {.lex_state = 53}, + [1508] = {.lex_state = 53}, [1509] = {.lex_state = 0}, - [1510] = {.lex_state = 52}, - [1511] = {.lex_state = 52}, - [1512] = {.lex_state = 52}, + [1510] = {.lex_state = 53}, + [1511] = {.lex_state = 53}, + [1512] = {.lex_state = 53}, [1513] = {.lex_state = 0}, [1514] = {.lex_state = 32}, [1515] = {.lex_state = 37}, - [1516] = {.lex_state = 52}, + [1516] = {.lex_state = 53}, [1517] = {.lex_state = 32}, [1518] = {.lex_state = 32}, [1519] = {.lex_state = 0}, @@ -10899,44 +10906,44 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1521] = {.lex_state = 0}, [1522] = {.lex_state = 30}, [1523] = {.lex_state = 119}, - [1524] = {.lex_state = 52}, + [1524] = {.lex_state = 53}, [1525] = {.lex_state = 37}, [1526] = {.lex_state = 32}, - [1527] = {.lex_state = 52}, + [1527] = {.lex_state = 53}, [1528] = {.lex_state = 37}, [1529] = {.lex_state = 0}, - [1530] = {.lex_state = 52}, - [1531] = {.lex_state = 52}, + [1530] = {.lex_state = 53}, + [1531] = {.lex_state = 53}, [1532] = {.lex_state = 0}, [1533] = {.lex_state = 0}, [1534] = {.lex_state = 119}, - [1535] = {.lex_state = 52}, - [1536] = {.lex_state = 52}, - [1537] = {.lex_state = 52}, + [1535] = {.lex_state = 53}, + [1536] = {.lex_state = 53}, + [1537] = {.lex_state = 53}, [1538] = {.lex_state = 32}, [1539] = {.lex_state = 0}, - [1540] = {.lex_state = 52}, - [1541] = {.lex_state = 52}, - [1542] = {.lex_state = 52}, - [1543] = {.lex_state = 52}, + [1540] = {.lex_state = 53}, + [1541] = {.lex_state = 53}, + [1542] = {.lex_state = 53}, + [1543] = {.lex_state = 53}, [1544] = {.lex_state = 30}, - [1545] = {.lex_state = 52}, + [1545] = {.lex_state = 53}, [1546] = {.lex_state = 50}, - [1547] = {.lex_state = 52}, + [1547] = {.lex_state = 53}, [1548] = {.lex_state = 32}, [1549] = {.lex_state = 32}, - [1550] = {.lex_state = 52}, - [1551] = {.lex_state = 52}, - [1552] = {.lex_state = 52}, + [1550] = {.lex_state = 53}, + [1551] = {.lex_state = 53}, + [1552] = {.lex_state = 53}, [1553] = {.lex_state = 50}, [1554] = {.lex_state = 50}, - [1555] = {.lex_state = 52}, + [1555] = {.lex_state = 53}, [1556] = {.lex_state = 37}, [1557] = {.lex_state = 37}, [1558] = {.lex_state = 37}, - [1559] = {.lex_state = 52}, + [1559] = {.lex_state = 53}, [1560] = {.lex_state = 30}, - [1561] = {.lex_state = 52}, + [1561] = {.lex_state = 53}, [1562] = {.lex_state = 50}, [1563] = {.lex_state = 45}, [1564] = {.lex_state = 37}, @@ -10955,7 +10962,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1577] = {.lex_state = 0}, [1578] = {.lex_state = 0}, [1579] = {.lex_state = 0}, - [1580] = {.lex_state = 52}, + [1580] = {.lex_state = 53}, [1581] = {.lex_state = 45}, [1582] = {.lex_state = 0}, [1583] = {.lex_state = 0}, @@ -10963,7 +10970,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1585] = {.lex_state = 0}, [1586] = {.lex_state = 0}, [1587] = {.lex_state = 0}, - [1588] = {.lex_state = 52}, + [1588] = {.lex_state = 53}, [1589] = {.lex_state = 0}, [1590] = {.lex_state = 0}, [1591] = {.lex_state = 0}, @@ -10974,12 +10981,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1596] = {.lex_state = 0}, [1597] = {.lex_state = 0}, [1598] = {.lex_state = 0}, - [1599] = {.lex_state = 52}, + [1599] = {.lex_state = 53}, [1600] = {.lex_state = 0}, [1601] = {.lex_state = 0}, [1602] = {.lex_state = 0}, - [1603] = {.lex_state = 52}, - [1604] = {.lex_state = 52}, + [1603] = {.lex_state = 53}, + [1604] = {.lex_state = 53}, [1605] = {.lex_state = 0}, [1606] = {.lex_state = 0}, [1607] = {.lex_state = 0}, @@ -10988,7 +10995,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1610] = {.lex_state = 0}, [1611] = {.lex_state = 30}, [1612] = {.lex_state = 34}, - [1613] = {.lex_state = 52}, + [1613] = {.lex_state = 53}, [1614] = {.lex_state = 34}, [1615] = {.lex_state = 45}, [1616] = {.lex_state = 0}, @@ -11013,17 +11020,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1635] = {.lex_state = 0}, [1636] = {.lex_state = 0}, [1637] = {.lex_state = 0}, - [1638] = {.lex_state = 52}, + [1638] = {.lex_state = 53}, [1639] = {.lex_state = 0}, [1640] = {.lex_state = 0}, - [1641] = {.lex_state = 52}, + [1641] = {.lex_state = 53}, [1642] = {.lex_state = 45}, [1643] = {.lex_state = 45}, [1644] = {.lex_state = 0}, [1645] = {.lex_state = 0}, [1646] = {.lex_state = 0}, [1647] = {.lex_state = 0}, - [1648] = {.lex_state = 52}, + [1648] = {.lex_state = 53}, [1649] = {.lex_state = 0}, [1650] = {.lex_state = 30}, [1651] = {.lex_state = 45}, @@ -11039,7 +11046,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1661] = {.lex_state = 0}, [1662] = {.lex_state = 0}, [1663] = {.lex_state = 0}, - [1664] = {.lex_state = 52}, + [1664] = {.lex_state = 53}, [1665] = {.lex_state = 0}, [1666] = {.lex_state = 0}, [1667] = {.lex_state = 0}, @@ -11053,7 +11060,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1675] = {.lex_state = 0}, [1676] = {.lex_state = 0}, [1677] = {.lex_state = 0}, - [1678] = {.lex_state = 52}, + [1678] = {.lex_state = 53}, [1679] = {.lex_state = 0}, [1680] = {.lex_state = 30}, [1681] = {.lex_state = 0}, @@ -11061,12 +11068,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1683] = {.lex_state = 0}, [1684] = {.lex_state = 0}, [1685] = {.lex_state = 0}, - [1686] = {.lex_state = 52}, + [1686] = {.lex_state = 53}, [1687] = {.lex_state = 119}, [1688] = {.lex_state = 0}, [1689] = {.lex_state = 119}, [1690] = {.lex_state = 119}, - [1691] = {.lex_state = 52}, + [1691] = {.lex_state = 53}, [1692] = {.lex_state = 119}, [1693] = {.lex_state = 0}, [1694] = {.lex_state = 119}, @@ -11085,7 +11092,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1707] = {.lex_state = 0}, [1708] = {.lex_state = 33}, [1709] = {.lex_state = 119}, - [1710] = {.lex_state = 52}, + [1710] = {.lex_state = 53}, [1711] = {.lex_state = 33}, [1712] = {.lex_state = 0}, [1713] = {.lex_state = 0}, @@ -11106,12 +11113,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1728] = {.lex_state = 45}, [1729] = {.lex_state = 0}, [1730] = {.lex_state = 33}, - [1731] = {.lex_state = 52}, + [1731] = {.lex_state = 53}, [1732] = {.lex_state = 0}, - [1733] = {.lex_state = 52}, + [1733] = {.lex_state = 53}, [1734] = {.lex_state = 119}, [1735] = {.lex_state = 119}, - [1736] = {.lex_state = 52}, + [1736] = {.lex_state = 53}, [1737] = {.lex_state = 0}, [1738] = {.lex_state = 0}, [1739] = {.lex_state = 0}, @@ -11124,10 +11131,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1746] = {.lex_state = 33}, [1747] = {.lex_state = 33}, [1748] = {.lex_state = 0}, - [1749] = {.lex_state = 52}, + [1749] = {.lex_state = 53}, [1750] = {.lex_state = 0}, [1751] = {.lex_state = 0}, - [1752] = {.lex_state = 52}, + [1752] = {.lex_state = 53}, [1753] = {.lex_state = 0}, [1754] = {.lex_state = 119}, [1755] = {.lex_state = 33}, @@ -11142,7 +11149,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1764] = {.lex_state = 119}, [1765] = {.lex_state = 0}, [1766] = {.lex_state = 0}, - [1767] = {.lex_state = 52}, + [1767] = {.lex_state = 53}, [1768] = {.lex_state = 119}, [1769] = {.lex_state = 33}, [1770] = {.lex_state = 0}, @@ -11167,7 +11174,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1789] = {.lex_state = 44}, [1790] = {.lex_state = 0}, [1791] = {.lex_state = 44}, - [1792] = {.lex_state = 52}, + [1792] = {.lex_state = 53}, [1793] = {.lex_state = 0}, [1794] = {.lex_state = 44}, [1795] = {.lex_state = 34}, @@ -11193,10 +11200,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1815] = {.lex_state = 0}, [1816] = {.lex_state = 34}, [1817] = {.lex_state = 0}, - [1818] = {.lex_state = 52}, + [1818] = {.lex_state = 53}, [1819] = {.lex_state = 34}, [1820] = {.lex_state = 0}, - [1821] = {.lex_state = 0}, + [1821] = {.lex_state = 44}, [1822] = {.lex_state = 0}, [1823] = {.lex_state = 119}, [1824] = {.lex_state = 0}, @@ -11212,8 +11219,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1834] = {.lex_state = 0}, [1835] = {.lex_state = 34}, [1836] = {.lex_state = 0}, - [1837] = {.lex_state = 52}, - [1838] = {.lex_state = 52}, + [1837] = {.lex_state = 53}, + [1838] = {.lex_state = 53}, [1839] = {.lex_state = 0}, [1840] = {.lex_state = 44}, [1841] = {.lex_state = 44}, @@ -11221,13 +11228,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1843] = {.lex_state = 44}, [1844] = {.lex_state = 0}, [1845] = {.lex_state = 0}, - [1846] = {.lex_state = 52}, + [1846] = {.lex_state = 53}, [1847] = {.lex_state = 0}, [1848] = {.lex_state = 0}, [1849] = {.lex_state = 119}, [1850] = {.lex_state = 0}, [1851] = {.lex_state = 0}, - [1852] = {.lex_state = 52}, + [1852] = {.lex_state = 53}, [1853] = {.lex_state = 0}, [1854] = {.lex_state = 44}, [1855] = {.lex_state = 0}, @@ -11242,42 +11249,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1864] = {.lex_state = 44}, [1865] = {.lex_state = 44}, [1866] = {.lex_state = 44}, - [1867] = {.lex_state = 52}, + [1867] = {.lex_state = 53}, [1868] = {.lex_state = 0}, [1869] = {.lex_state = 44}, - [1870] = {.lex_state = 52}, + [1870] = {.lex_state = 53}, [1871] = {.lex_state = 119}, [1872] = {.lex_state = 44}, [1873] = {.lex_state = 44}, - [1874] = {.lex_state = 52}, + [1874] = {.lex_state = 53}, [1875] = {.lex_state = 34}, [1876] = {.lex_state = 34}, - [1877] = {.lex_state = 52}, + [1877] = {.lex_state = 53}, [1878] = {.lex_state = 34}, - [1879] = {.lex_state = 52}, + [1879] = {.lex_state = 53}, [1880] = {.lex_state = 0}, [1881] = {.lex_state = 0}, [1882] = {.lex_state = 0}, [1883] = {.lex_state = 0}, - [1884] = {.lex_state = 52}, + [1884] = {.lex_state = 53}, [1885] = {.lex_state = 0}, [1886] = {.lex_state = 0}, [1887] = {.lex_state = 0}, [1888] = {.lex_state = 0}, [1889] = {.lex_state = 0}, - [1890] = {.lex_state = 52}, + [1890] = {.lex_state = 53}, [1891] = {.lex_state = 34}, [1892] = {.lex_state = 0}, [1893] = {.lex_state = 0}, - [1894] = {.lex_state = 52}, - [1895] = {.lex_state = 52}, + [1894] = {.lex_state = 53}, + [1895] = {.lex_state = 53}, [1896] = {.lex_state = 0}, [1897] = {.lex_state = 34}, [1898] = {.lex_state = 0}, [1899] = {.lex_state = 44}, [1900] = {.lex_state = 44}, - [1901] = {.lex_state = 52}, - [1902] = {.lex_state = 52}, + [1901] = {.lex_state = 53}, + [1902] = {.lex_state = 53}, [1903] = {.lex_state = 44}, [1904] = {.lex_state = 0}, [1905] = {.lex_state = 0}, @@ -11291,9 +11298,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1913] = {.lex_state = 0}, [1914] = {.lex_state = 0}, [1915] = {.lex_state = 0}, - [1916] = {.lex_state = 52}, - [1917] = {.lex_state = 52}, - [1918] = {.lex_state = 52}, + [1916] = {.lex_state = 53}, + [1917] = {.lex_state = 53}, + [1918] = {.lex_state = 53}, [1919] = {.lex_state = 44}, [1920] = {.lex_state = 0}, [1921] = {.lex_state = 0}, @@ -11301,55 +11308,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1923] = {.lex_state = 0}, [1924] = {.lex_state = 0}, [1925] = {.lex_state = 0}, - [1926] = {.lex_state = 52}, + [1926] = {.lex_state = 53}, [1927] = {.lex_state = 34}, [1928] = {.lex_state = 0}, - [1929] = {.lex_state = 44}, - [1930] = {.lex_state = 52}, + [1929] = {.lex_state = 0}, + [1930] = {.lex_state = 53}, [1931] = {.lex_state = 34}, [1932] = {.lex_state = 44}, [1933] = {.lex_state = 0}, [1934] = {.lex_state = 0}, [1935] = {.lex_state = 0}, - [1936] = {.lex_state = 52}, + [1936] = {.lex_state = 53}, [1937] = {.lex_state = 0}, - [1938] = {.lex_state = 52}, + [1938] = {.lex_state = 53}, [1939] = {.lex_state = 44}, [1940] = {.lex_state = 0}, - [1941] = {.lex_state = 52}, + [1941] = {.lex_state = 53}, [1942] = {.lex_state = 34}, [1943] = {.lex_state = 0}, [1944] = {.lex_state = 44}, [1945] = {.lex_state = 0}, [1946] = {.lex_state = 0}, [1947] = {.lex_state = 44}, - [1948] = {.lex_state = 52}, - [1949] = {.lex_state = 52}, + [1948] = {.lex_state = 53}, + [1949] = {.lex_state = 53}, [1950] = {.lex_state = 119}, [1951] = {.lex_state = 0}, [1952] = {.lex_state = 34}, [1953] = {.lex_state = 44}, - [1954] = {.lex_state = 52}, + [1954] = {.lex_state = 53}, [1955] = {.lex_state = 0}, [1956] = {.lex_state = 0}, [1957] = {.lex_state = 0}, [1958] = {.lex_state = 0}, [1959] = {.lex_state = 44}, [1960] = {.lex_state = 0}, - [1961] = {.lex_state = 52}, + [1961] = {.lex_state = 53}, [1962] = {.lex_state = 44}, [1963] = {.lex_state = 0}, [1964] = {.lex_state = 0}, - [1965] = {.lex_state = 52}, + [1965] = {.lex_state = 53}, [1966] = {.lex_state = 44}, - [1967] = {.lex_state = 52}, + [1967] = {.lex_state = 53}, [1968] = {.lex_state = 0}, - [1969] = {.lex_state = 52}, - [1970] = {.lex_state = 52}, + [1969] = {.lex_state = 53}, + [1970] = {.lex_state = 53}, [1971] = {.lex_state = 119}, [1972] = {.lex_state = 0}, - [1973] = {.lex_state = 52}, - [1974] = {.lex_state = 52}, + [1973] = {.lex_state = 53}, + [1974] = {.lex_state = 53}, [1975] = {.lex_state = 34}, [1976] = {.lex_state = 0}, [1977] = {.lex_state = 0}, @@ -11364,20 +11371,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1986] = {.lex_state = 0}, [1987] = {.lex_state = 44}, [1988] = {.lex_state = 44}, - [1989] = {.lex_state = 52}, + [1989] = {.lex_state = 53}, [1990] = {.lex_state = 119}, - [1991] = {.lex_state = 52}, + [1991] = {.lex_state = 53}, [1992] = {.lex_state = 44}, [1993] = {.lex_state = 44}, - [1994] = {.lex_state = 52}, - [1995] = {.lex_state = 52}, + [1994] = {.lex_state = 53}, + [1995] = {.lex_state = 53}, [1996] = {.lex_state = 0}, [1997] = {.lex_state = 0}, [1998] = {.lex_state = 0}, [1999] = {.lex_state = 119}, [2000] = {.lex_state = 0}, [2001] = {.lex_state = 0}, - [2002] = {.lex_state = 52}, + [2002] = {.lex_state = 53}, [2003] = {.lex_state = 0}, [2004] = {.lex_state = 34}, [2005] = {.lex_state = 34}, @@ -11385,17 +11392,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2007] = {.lex_state = 0}, [2008] = {.lex_state = 44}, [2009] = {.lex_state = 34}, - [2010] = {.lex_state = 52}, + [2010] = {.lex_state = 53}, [2011] = {.lex_state = 44}, [2012] = {.lex_state = 0}, [2013] = {.lex_state = 34}, - [2014] = {.lex_state = 52}, + [2014] = {.lex_state = 53}, [2015] = {.lex_state = 119}, [2016] = {.lex_state = 0}, [2017] = {.lex_state = 0}, [2018] = {.lex_state = 119}, [2019] = {.lex_state = 44}, - [2020] = {.lex_state = 52}, + [2020] = {.lex_state = 53}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -11465,9 +11472,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_long] = ACTIONS(1), [anon_sym_short] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_static] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), - [anon_sym_static] = ACTIONS(1), [anon_sym_auto] = ACTIONS(1), [anon_sym_register] = ACTIONS(1), [anon_sym_inline] = ACTIONS(1), @@ -11556,24 +11563,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(43), [sym_preproc_ifdef] = STATE(43), [sym_function_definition] = STATE(43), - [sym__old_style_function_definition] = STATE(415), + [sym__old_style_function_definition] = STATE(410), [sym_declaration] = STATE(43), [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1129), [sym_linkage_specification] = STATE(43), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(747), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(740), [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(866), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(865), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(43), [sym_labeled_statement] = STATE(43), [sym__top_level_expression_statement] = STATE(43), @@ -11587,34 +11594,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(43), [sym_continue_statement] = STATE(43), [sym_goto_statement] = STATE(43), - [sym__expression] = STATE(1117), + [sym__expression] = STATE(1118), [sym__expression_not_binary] = STATE(1115), [sym__string] = STATE(1115), [sym_conditional_expression] = STATE(1115), [sym_assignment_expression] = STATE(1115), - [sym_pointer_expression] = STATE(840), + [sym_pointer_expression] = STATE(844), [sym_unary_expression] = STATE(1115), - [sym_binary_expression] = STATE(700), + [sym_binary_expression] = STATE(708), [sym_update_expression] = STATE(1115), [sym_cast_expression] = STATE(1115), [sym_sizeof_expression] = STATE(1115), [sym_alignof_expression] = STATE(1115), [sym_offsetof_expression] = STATE(1115), [sym_generic_expression] = STATE(1115), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), [sym_gnu_asm_expression] = STATE(1115), - [sym_field_expression] = STATE(840), + [sym_field_expression] = STATE(844), [sym_compound_literal_expression] = STATE(1115), - [sym_parenthesized_expression] = STATE(840), + [sym_parenthesized_expression] = STATE(844), [sym_char_literal] = STATE(1115), [sym_concatenated_string] = STATE(1115), - [sym_string_literal] = STATE(683), + [sym_string_literal] = STATE(687), [sym_null] = STATE(1115), [sym__empty_declaration] = STATE(43), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_translation_unit_repeat1] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(314), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [ts_builtin_sym_end] = ACTIONS(5), @@ -11724,21 +11731,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(150), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(745), [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(867), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(22), [sym_labeled_statement] = STATE(22), [sym_expression_statement] = STATE(22), @@ -11755,34 +11762,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(22), [sym_seh_leave_statement] = STATE(22), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(335), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(101), @@ -11899,21 +11906,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(150), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(745), [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(867), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(22), [sym_labeled_statement] = STATE(22), [sym_expression_statement] = STATE(22), @@ -11930,34 +11937,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(22), [sym_seh_leave_statement] = STATE(22), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(335), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(101), @@ -12074,21 +12081,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(150), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(745), [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(867), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(22), [sym_labeled_statement] = STATE(22), [sym_expression_statement] = STATE(22), @@ -12105,34 +12112,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(22), [sym_seh_leave_statement] = STATE(22), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(335), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(101), @@ -12249,21 +12256,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(150), [sym_declaration] = STATE(11), [sym_type_definition] = STATE(11), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(11), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(745), [sym_compound_statement] = STATE(11), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(867), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(11), [sym_labeled_statement] = STATE(11), [sym_expression_statement] = STATE(11), @@ -12280,34 +12287,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(11), [sym_seh_leave_statement] = STATE(11), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(11), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(11), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(335), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(101), @@ -12424,21 +12431,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(150), [sym_declaration] = STATE(13), [sym_type_definition] = STATE(13), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(13), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(745), [sym_compound_statement] = STATE(13), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(867), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(13), [sym_labeled_statement] = STATE(13), [sym_expression_statement] = STATE(13), @@ -12455,34 +12462,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(13), [sym_seh_leave_statement] = STATE(13), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(13), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(13), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(335), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(101), @@ -12599,21 +12606,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(150), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(745), [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(867), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(22), [sym_labeled_statement] = STATE(22), [sym_expression_statement] = STATE(22), @@ -12630,34 +12637,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(22), [sym_seh_leave_statement] = STATE(22), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(335), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(101), @@ -12774,21 +12781,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(150), [sym_declaration] = STATE(16), [sym_type_definition] = STATE(16), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(745), [sym_compound_statement] = STATE(16), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(867), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(16), [sym_labeled_statement] = STATE(16), [sym_expression_statement] = STATE(16), @@ -12805,34 +12812,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(16), [sym_seh_leave_statement] = STATE(16), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(335), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(101), @@ -12949,21 +12956,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(150), [sym_declaration] = STATE(3), [sym_type_definition] = STATE(3), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(3), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(745), [sym_compound_statement] = STATE(3), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(867), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(3), [sym_labeled_statement] = STATE(3), [sym_expression_statement] = STATE(3), @@ -12980,34 +12987,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(3), [sym_seh_leave_statement] = STATE(3), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(3), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(3), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(335), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(101), @@ -13124,21 +13131,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(150), [sym_declaration] = STATE(2), [sym_type_definition] = STATE(2), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(2), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(745), [sym_compound_statement] = STATE(2), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(867), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(2), [sym_labeled_statement] = STATE(2), [sym_expression_statement] = STATE(2), @@ -13155,34 +13162,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(2), [sym_seh_leave_statement] = STATE(2), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(2), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(2), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(335), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(101), @@ -13299,21 +13306,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(150), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(745), [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(867), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(22), [sym_labeled_statement] = STATE(22), [sym_expression_statement] = STATE(22), @@ -13330,34 +13337,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(22), [sym_seh_leave_statement] = STATE(22), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(335), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(101), @@ -13474,21 +13481,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(150), [sym_declaration] = STATE(14), [sym_type_definition] = STATE(14), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(14), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(745), [sym_compound_statement] = STATE(14), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(867), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(14), [sym_labeled_statement] = STATE(14), [sym_expression_statement] = STATE(14), @@ -13505,34 +13512,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(14), [sym_seh_leave_statement] = STATE(14), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(14), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(335), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(101), @@ -13649,21 +13656,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(150), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(745), [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(867), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(22), [sym_labeled_statement] = STATE(22), [sym_expression_statement] = STATE(22), @@ -13680,34 +13687,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(22), [sym_seh_leave_statement] = STATE(22), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(335), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(101), @@ -13824,21 +13831,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(150), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(745), [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(867), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(22), [sym_labeled_statement] = STATE(22), [sym_expression_statement] = STATE(22), @@ -13855,34 +13862,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(22), [sym_seh_leave_statement] = STATE(22), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(335), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(101), @@ -13999,21 +14006,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(150), [sym_declaration] = STATE(19), [sym_type_definition] = STATE(19), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(19), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(745), [sym_compound_statement] = STATE(19), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(867), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(19), [sym_labeled_statement] = STATE(19), [sym_expression_statement] = STATE(19), @@ -14030,34 +14037,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(19), [sym_seh_leave_statement] = STATE(19), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(19), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(19), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(335), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(101), @@ -14174,21 +14181,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(150), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(745), [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(867), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(22), [sym_labeled_statement] = STATE(22), [sym_expression_statement] = STATE(22), @@ -14205,34 +14212,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(22), [sym_seh_leave_statement] = STATE(22), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(335), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(101), @@ -14349,21 +14356,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(150), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(745), [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(867), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(22), [sym_labeled_statement] = STATE(22), [sym_expression_statement] = STATE(22), @@ -14380,34 +14387,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(22), [sym_seh_leave_statement] = STATE(22), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(335), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(101), @@ -14524,21 +14531,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(150), [sym_declaration] = STATE(4), [sym_type_definition] = STATE(4), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(4), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(745), [sym_compound_statement] = STATE(4), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(867), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(4), [sym_labeled_statement] = STATE(4), [sym_expression_statement] = STATE(4), @@ -14555,34 +14562,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(4), [sym_seh_leave_statement] = STATE(4), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(4), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(4), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(335), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(101), @@ -14699,21 +14706,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(150), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(745), [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(867), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(22), [sym_labeled_statement] = STATE(22), [sym_expression_statement] = STATE(22), @@ -14730,34 +14737,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(22), [sym_seh_leave_statement] = STATE(22), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(335), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(101), @@ -14874,21 +14881,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(150), [sym_declaration] = STATE(17), [sym_type_definition] = STATE(17), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(745), [sym_compound_statement] = STATE(17), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(867), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(17), [sym_labeled_statement] = STATE(17), [sym_expression_statement] = STATE(17), @@ -14905,34 +14912,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(17), [sym_seh_leave_statement] = STATE(17), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(335), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(101), @@ -15049,21 +15056,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(150), [sym_declaration] = STATE(7), [sym_type_definition] = STATE(7), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(7), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(745), [sym_compound_statement] = STATE(7), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(867), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(7), [sym_labeled_statement] = STATE(7), [sym_expression_statement] = STATE(7), @@ -15080,34 +15087,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(7), [sym_seh_leave_statement] = STATE(7), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(7), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(7), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(335), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(101), @@ -15221,21 +15228,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(150), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1132), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(740), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(745), [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(865), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(867), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(22), [sym_labeled_statement] = STATE(22), [sym_expression_statement] = STATE(22), @@ -15252,34 +15259,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(22), [sym_seh_leave_statement] = STATE(22), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(335), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(199), @@ -15393,21 +15400,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(367), [sym_declaration] = STATE(28), [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1134), [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(743), [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(28), [sym_labeled_statement] = STATE(28), [sym_expression_statement] = STATE(28), @@ -15423,35 +15430,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(28), [sym_seh_try_statement] = STATE(28), [sym_seh_leave_statement] = STATE(28), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(28), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(400), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(351), @@ -15561,21 +15568,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(337), [sym_declaration] = STATE(25), [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1135), [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(744), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(742), [sym_compound_statement] = STATE(25), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), [sym__type_specifier] = STATE(863), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(25), [sym_labeled_statement] = STATE(25), [sym_expression_statement] = STATE(25), @@ -15592,34 +15599,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(25), [sym_seh_leave_statement] = STATE(25), [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(339), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(401), @@ -15729,21 +15736,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(337), [sym_declaration] = STATE(25), [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1135), [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(744), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(742), [sym_compound_statement] = STATE(25), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), [sym__type_specifier] = STATE(863), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(25), [sym_labeled_statement] = STATE(25), [sym_expression_statement] = STATE(25), @@ -15760,34 +15767,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(25), [sym_seh_leave_statement] = STATE(25), [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(339), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(451), @@ -15897,21 +15904,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(367), [sym_declaration] = STATE(34), [sym_type_definition] = STATE(34), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1134), [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(743), [sym_compound_statement] = STATE(34), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(34), [sym_labeled_statement] = STATE(34), [sym_expression_statement] = STATE(34), @@ -15927,35 +15934,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(34), [sym_seh_try_statement] = STATE(34), [sym_seh_leave_statement] = STATE(34), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(34), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(400), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(351), @@ -16065,21 +16072,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(337), [sym_declaration] = STATE(24), [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1135), [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(744), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(742), [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), [sym__type_specifier] = STATE(863), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(24), [sym_labeled_statement] = STATE(24), [sym_expression_statement] = STATE(24), @@ -16096,34 +16103,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(24), [sym_seh_leave_statement] = STATE(24), [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(339), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(401), @@ -16233,21 +16240,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(367), [sym_declaration] = STATE(39), [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1134), [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(743), [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(39), [sym_labeled_statement] = STATE(39), [sym_expression_statement] = STATE(39), @@ -16263,35 +16270,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(39), [sym_seh_try_statement] = STATE(39), [sym_seh_leave_statement] = STATE(39), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(400), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(351), @@ -16401,21 +16408,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(367), [sym_declaration] = STATE(39), [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1134), [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(743), [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(39), [sym_labeled_statement] = STATE(39), [sym_expression_statement] = STATE(39), @@ -16431,35 +16438,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(39), [sym_seh_try_statement] = STATE(39), [sym_seh_leave_statement] = STATE(39), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(400), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(351), @@ -16569,21 +16576,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(367), [sym_declaration] = STATE(39), [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1134), [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(743), [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(39), [sym_labeled_statement] = STATE(39), [sym_expression_statement] = STATE(39), @@ -16599,35 +16606,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(39), [sym_seh_try_statement] = STATE(39), [sym_seh_leave_statement] = STATE(39), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(400), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(351), @@ -16737,21 +16744,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(367), [sym_declaration] = STATE(30), [sym_type_definition] = STATE(30), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1134), [sym_linkage_specification] = STATE(30), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(743), [sym_compound_statement] = STATE(30), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(30), [sym_labeled_statement] = STATE(30), [sym_expression_statement] = STATE(30), @@ -16767,35 +16774,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(30), [sym_seh_try_statement] = STATE(30), [sym_seh_leave_statement] = STATE(30), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(30), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(30), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(400), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(351), @@ -16905,21 +16912,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(367), [sym_declaration] = STATE(39), [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1134), [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(743), [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(39), [sym_labeled_statement] = STATE(39), [sym_expression_statement] = STATE(39), @@ -16935,35 +16942,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(39), [sym_seh_try_statement] = STATE(39), [sym_seh_leave_statement] = STATE(39), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(400), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(351), @@ -17073,21 +17080,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(367), [sym_declaration] = STATE(29), [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1134), [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(743), [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(29), [sym_labeled_statement] = STATE(29), [sym_expression_statement] = STATE(29), @@ -17103,35 +17110,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(29), [sym_seh_try_statement] = STATE(29), [sym_seh_leave_statement] = STATE(29), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(29), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(400), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(351), @@ -17241,21 +17248,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(367), [sym_declaration] = STATE(39), [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1134), [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(743), [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(39), [sym_labeled_statement] = STATE(39), [sym_expression_statement] = STATE(39), @@ -17271,35 +17278,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(39), [sym_seh_try_statement] = STATE(39), [sym_seh_leave_statement] = STATE(39), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(400), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(351), @@ -17409,21 +17416,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(367), [sym_declaration] = STATE(39), [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1134), [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(743), [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(39), [sym_labeled_statement] = STATE(39), [sym_expression_statement] = STATE(39), @@ -17439,35 +17446,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(39), [sym_seh_try_statement] = STATE(39), [sym_seh_leave_statement] = STATE(39), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(400), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(351), @@ -17577,21 +17584,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(367), [sym_declaration] = STATE(39), [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1134), [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(743), [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(39), [sym_labeled_statement] = STATE(39), [sym_expression_statement] = STATE(39), @@ -17607,35 +17614,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(39), [sym_seh_try_statement] = STATE(39), [sym_seh_leave_statement] = STATE(39), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(400), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(351), @@ -17745,21 +17752,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(367), [sym_declaration] = STATE(32), [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1134), [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(743), [sym_compound_statement] = STATE(32), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(32), [sym_labeled_statement] = STATE(32), [sym_expression_statement] = STATE(32), @@ -17775,35 +17782,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(32), [sym_seh_try_statement] = STATE(32), [sym_seh_leave_statement] = STATE(32), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(32), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(400), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(351), @@ -17913,21 +17920,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(367), [sym_declaration] = STATE(35), [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1134), [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(743), [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(35), [sym_labeled_statement] = STATE(35), [sym_expression_statement] = STATE(35), @@ -17943,35 +17950,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(35), [sym_seh_try_statement] = STATE(35), [sym_seh_leave_statement] = STATE(35), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(400), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(351), @@ -18081,21 +18088,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(367), [sym_declaration] = STATE(39), [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1134), [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(743), [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(39), [sym_labeled_statement] = STATE(39), [sym_expression_statement] = STATE(39), @@ -18111,35 +18118,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(39), [sym_seh_try_statement] = STATE(39), [sym_seh_leave_statement] = STATE(39), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(400), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(549), @@ -18249,21 +18256,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(367), [sym_declaration] = STATE(42), [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1134), [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(743), [sym_compound_statement] = STATE(42), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(42), [sym_labeled_statement] = STATE(42), [sym_expression_statement] = STATE(42), @@ -18279,35 +18286,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(42), [sym_seh_try_statement] = STATE(42), [sym_seh_leave_statement] = STATE(42), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(42), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(400), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(351), @@ -18417,21 +18424,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(367), [sym_declaration] = STATE(36), [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1134), [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(743), [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(36), [sym_labeled_statement] = STATE(36), [sym_expression_statement] = STATE(36), @@ -18447,35 +18454,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(36), [sym_seh_try_statement] = STATE(36), [sym_seh_leave_statement] = STATE(36), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(400), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(351), @@ -18585,21 +18592,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__old_style_function_definition] = STATE(367), [sym_declaration] = STATE(39), [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1134), [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(746), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(743), [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(867), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(39), [sym_labeled_statement] = STATE(39), [sym_expression_statement] = STATE(39), @@ -18615,35 +18622,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(39), [sym_seh_try_statement] = STATE(39), [sym_seh_leave_statement] = STATE(39), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(400), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(351), @@ -18750,24 +18757,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(44), [sym_preproc_ifdef] = STATE(44), [sym_function_definition] = STATE(44), - [sym__old_style_function_definition] = STATE(415), + [sym__old_style_function_definition] = STATE(410), [sym_declaration] = STATE(44), [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1129), [sym_linkage_specification] = STATE(44), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(747), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(740), [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(866), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(865), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(44), [sym_labeled_statement] = STATE(44), [sym__top_level_expression_statement] = STATE(44), @@ -18781,34 +18788,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(44), [sym_continue_statement] = STATE(44), [sym_goto_statement] = STATE(44), - [sym__expression] = STATE(1117), + [sym__expression] = STATE(1118), [sym__expression_not_binary] = STATE(1115), [sym__string] = STATE(1115), [sym_conditional_expression] = STATE(1115), [sym_assignment_expression] = STATE(1115), - [sym_pointer_expression] = STATE(840), + [sym_pointer_expression] = STATE(844), [sym_unary_expression] = STATE(1115), - [sym_binary_expression] = STATE(700), + [sym_binary_expression] = STATE(708), [sym_update_expression] = STATE(1115), [sym_cast_expression] = STATE(1115), [sym_sizeof_expression] = STATE(1115), [sym_alignof_expression] = STATE(1115), [sym_offsetof_expression] = STATE(1115), [sym_generic_expression] = STATE(1115), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), [sym_gnu_asm_expression] = STATE(1115), - [sym_field_expression] = STATE(840), + [sym_field_expression] = STATE(844), [sym_compound_literal_expression] = STATE(1115), - [sym_parenthesized_expression] = STATE(840), + [sym_parenthesized_expression] = STATE(844), [sym_char_literal] = STATE(1115), [sym_concatenated_string] = STATE(1115), - [sym_string_literal] = STATE(683), + [sym_string_literal] = STATE(687), [sym_null] = STATE(1115), [sym__empty_declaration] = STATE(44), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_translation_unit_repeat1] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(314), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [ts_builtin_sym_end] = ACTIONS(629), @@ -18912,24 +18919,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(44), [sym_preproc_ifdef] = STATE(44), [sym_function_definition] = STATE(44), - [sym__old_style_function_definition] = STATE(415), + [sym__old_style_function_definition] = STATE(410), [sym_declaration] = STATE(44), [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1129), [sym_linkage_specification] = STATE(44), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), - [sym_ms_call_modifier] = STATE(747), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), + [sym_ms_call_modifier] = STATE(740), [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(866), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(865), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(44), [sym_labeled_statement] = STATE(44), [sym__top_level_expression_statement] = STATE(44), @@ -18943,34 +18950,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(44), [sym_continue_statement] = STATE(44), [sym_goto_statement] = STATE(44), - [sym__expression] = STATE(1117), + [sym__expression] = STATE(1118), [sym__expression_not_binary] = STATE(1115), [sym__string] = STATE(1115), [sym_conditional_expression] = STATE(1115), [sym_assignment_expression] = STATE(1115), - [sym_pointer_expression] = STATE(840), + [sym_pointer_expression] = STATE(844), [sym_unary_expression] = STATE(1115), - [sym_binary_expression] = STATE(700), + [sym_binary_expression] = STATE(708), [sym_update_expression] = STATE(1115), [sym_cast_expression] = STATE(1115), [sym_sizeof_expression] = STATE(1115), [sym_alignof_expression] = STATE(1115), [sym_offsetof_expression] = STATE(1115), [sym_generic_expression] = STATE(1115), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), [sym_gnu_asm_expression] = STATE(1115), - [sym_field_expression] = STATE(840), + [sym_field_expression] = STATE(844), [sym_compound_literal_expression] = STATE(1115), - [sym_parenthesized_expression] = STATE(840), + [sym_parenthesized_expression] = STATE(844), [sym_char_literal] = STATE(1115), [sym_concatenated_string] = STATE(1115), - [sym_string_literal] = STATE(683), + [sym_string_literal] = STATE(687), [sym_null] = STATE(1115), [sym__empty_declaration] = STATE(44), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_translation_unit_repeat1] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(314), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [ts_builtin_sym_end] = ACTIONS(631), @@ -19069,19 +19076,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [45] = { [sym_declaration] = STATE(46), [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1153), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(46), [sym_labeled_statement] = STATE(46), [sym_expression_statement] = STATE(46), @@ -19097,32 +19104,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(46), [sym_seh_leave_statement] = STATE(46), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(335), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [aux_sym_case_statement_repeat1] = STATE(46), @@ -19230,19 +19237,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [46] = { [sym_declaration] = STATE(47), [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1153), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(47), [sym_labeled_statement] = STATE(47), [sym_expression_statement] = STATE(47), @@ -19258,32 +19265,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(47), [sym_seh_leave_statement] = STATE(47), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(335), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [aux_sym_case_statement_repeat1] = STATE(47), @@ -19391,19 +19398,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [47] = { [sym_declaration] = STATE(47), [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1153), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(47), [sym_labeled_statement] = STATE(47), [sym_expression_statement] = STATE(47), @@ -19419,32 +19426,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(47), [sym_seh_leave_statement] = STATE(47), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(335), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [aux_sym_case_statement_repeat1] = STATE(47), @@ -19552,19 +19559,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [48] = { [sym_declaration] = STATE(47), [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1153), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(47), [sym_labeled_statement] = STATE(47), [sym_expression_statement] = STATE(47), @@ -19580,32 +19587,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(47), [sym_seh_leave_statement] = STATE(47), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(335), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [aux_sym_case_statement_repeat1] = STATE(47), @@ -19713,19 +19720,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [49] = { [sym_declaration] = STATE(48), [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1153), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(48), [sym_labeled_statement] = STATE(48), [sym_expression_statement] = STATE(48), @@ -19741,32 +19748,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(48), [sym_seh_leave_statement] = STATE(48), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(335), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [aux_sym_case_statement_repeat1] = STATE(48), @@ -19874,19 +19881,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [50] = { [sym_declaration] = STATE(60), [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(60), [sym_labeled_statement] = STATE(60), [sym_expression_statement] = STATE(60), @@ -19901,33 +19908,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(60), [sym_seh_try_statement] = STATE(60), [sym_seh_leave_statement] = STATE(60), - [sym__expression] = STATE(1080), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1084), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(314), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [aux_sym_case_statement_repeat1] = STATE(60), @@ -20031,19 +20038,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [51] = { [sym_declaration] = STATE(51), [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1144), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(51), [sym_labeled_statement] = STATE(51), [sym_expression_statement] = STATE(51), @@ -20058,33 +20065,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(51), [sym_seh_try_statement] = STATE(51), [sym_seh_leave_statement] = STATE(51), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(400), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [aux_sym_case_statement_repeat1] = STATE(51), @@ -20188,19 +20195,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [52] = { [sym_declaration] = STATE(51), [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1144), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(51), [sym_labeled_statement] = STATE(51), [sym_expression_statement] = STATE(51), @@ -20215,33 +20222,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(51), [sym_seh_try_statement] = STATE(51), [sym_seh_leave_statement] = STATE(51), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(400), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [aux_sym_case_statement_repeat1] = STATE(51), @@ -20345,19 +20352,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [53] = { [sym_declaration] = STATE(51), [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1144), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(51), [sym_labeled_statement] = STATE(51), [sym_expression_statement] = STATE(51), @@ -20372,33 +20379,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(51), [sym_seh_try_statement] = STATE(51), [sym_seh_leave_statement] = STATE(51), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(400), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [aux_sym_case_statement_repeat1] = STATE(51), @@ -20502,19 +20509,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [54] = { [sym_declaration] = STATE(54), [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1158), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(54), [sym_labeled_statement] = STATE(54), [sym_expression_statement] = STATE(54), @@ -20530,32 +20537,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(54), [sym_seh_leave_statement] = STATE(54), [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(339), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [aux_sym_case_statement_repeat1] = STATE(54), @@ -20659,19 +20666,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [55] = { [sym_declaration] = STATE(57), [sym_type_definition] = STATE(57), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1158), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), [sym_compound_statement] = STATE(57), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(57), [sym_labeled_statement] = STATE(57), [sym_expression_statement] = STATE(57), @@ -20687,32 +20694,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(57), [sym_seh_leave_statement] = STATE(57), [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(339), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [aux_sym_case_statement_repeat1] = STATE(57), @@ -20816,19 +20823,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [56] = { [sym_declaration] = STATE(52), [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1144), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(52), [sym_labeled_statement] = STATE(52), [sym_expression_statement] = STATE(52), @@ -20843,33 +20850,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(52), [sym_seh_try_statement] = STATE(52), [sym_seh_leave_statement] = STATE(52), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(400), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [aux_sym_case_statement_repeat1] = STATE(52), @@ -20973,19 +20980,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [57] = { [sym_declaration] = STATE(54), [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1158), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(54), [sym_labeled_statement] = STATE(54), [sym_expression_statement] = STATE(54), @@ -21001,32 +21008,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(54), [sym_seh_leave_statement] = STATE(54), [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(339), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [aux_sym_case_statement_repeat1] = STATE(54), @@ -21130,19 +21137,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [58] = { [sym_declaration] = STATE(54), [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1158), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(54), [sym_labeled_statement] = STATE(54), [sym_expression_statement] = STATE(54), @@ -21158,32 +21165,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(54), [sym_seh_leave_statement] = STATE(54), [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(339), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [aux_sym_case_statement_repeat1] = STATE(54), @@ -21287,19 +21294,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [59] = { [sym_declaration] = STATE(53), [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1144), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(53), [sym_labeled_statement] = STATE(53), [sym_expression_statement] = STATE(53), @@ -21314,33 +21321,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(53), [sym_seh_try_statement] = STATE(53), [sym_seh_leave_statement] = STATE(53), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(400), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [aux_sym_case_statement_repeat1] = STATE(53), @@ -21444,19 +21451,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [60] = { [sym_declaration] = STATE(60), [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(60), [sym_labeled_statement] = STATE(60), [sym_expression_statement] = STATE(60), @@ -21471,33 +21478,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(60), [sym_seh_try_statement] = STATE(60), [sym_seh_leave_statement] = STATE(60), - [sym__expression] = STATE(1080), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1084), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(314), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [aux_sym_case_statement_repeat1] = STATE(60), @@ -21601,19 +21608,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [61] = { [sym_declaration] = STATE(62), [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(62), [sym_labeled_statement] = STATE(62), [sym_expression_statement] = STATE(62), @@ -21628,33 +21635,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(62), [sym_seh_try_statement] = STATE(62), [sym_seh_leave_statement] = STATE(62), - [sym__expression] = STATE(1080), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1084), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(314), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [aux_sym_case_statement_repeat1] = STATE(62), @@ -21758,19 +21765,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [62] = { [sym_declaration] = STATE(60), [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(60), [sym_labeled_statement] = STATE(60), [sym_expression_statement] = STATE(60), @@ -21785,33 +21792,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(60), [sym_seh_try_statement] = STATE(60), [sym_seh_leave_statement] = STATE(60), - [sym__expression] = STATE(1080), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1084), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(314), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [aux_sym_case_statement_repeat1] = STATE(60), @@ -21915,19 +21922,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [63] = { [sym_declaration] = STATE(58), [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1158), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(58), [sym_labeled_statement] = STATE(58), [sym_expression_statement] = STATE(58), @@ -21943,32 +21950,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(58), [sym_seh_leave_statement] = STATE(58), [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(339), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [aux_sym_case_statement_repeat1] = STATE(58), @@ -22072,19 +22079,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [64] = { [sym_declaration] = STATE(50), [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(50), [sym_labeled_statement] = STATE(50), [sym_expression_statement] = STATE(50), @@ -22099,33 +22106,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(50), [sym_seh_try_statement] = STATE(50), [sym_seh_leave_statement] = STATE(50), - [sym__expression] = STATE(1080), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1084), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(314), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [aux_sym_case_statement_repeat1] = STATE(50), @@ -22229,19 +22236,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [65] = { [sym_declaration] = STATE(67), [sym_type_definition] = STATE(67), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), [sym_compound_statement] = STATE(67), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(67), [sym_labeled_statement] = STATE(67), [sym_expression_statement] = STATE(67), @@ -22256,33 +22263,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(67), [sym_seh_try_statement] = STATE(67), [sym_seh_leave_statement] = STATE(67), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(358), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [aux_sym_case_statement_repeat1] = STATE(67), @@ -22371,19 +22378,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [66] = { [sym_declaration] = STATE(67), [sym_type_definition] = STATE(67), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), [sym_compound_statement] = STATE(67), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(67), [sym_labeled_statement] = STATE(67), [sym_expression_statement] = STATE(67), @@ -22398,33 +22405,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(67), [sym_seh_try_statement] = STATE(67), [sym_seh_leave_statement] = STATE(67), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(358), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [aux_sym_case_statement_repeat1] = STATE(67), @@ -22513,19 +22520,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [67] = { [sym_declaration] = STATE(67), [sym_type_definition] = STATE(67), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), [sym_compound_statement] = STATE(67), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(67), [sym_labeled_statement] = STATE(67), [sym_expression_statement] = STATE(67), @@ -22540,33 +22547,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(67), [sym_seh_try_statement] = STATE(67), [sym_seh_leave_statement] = STATE(67), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(358), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [aux_sym_case_statement_repeat1] = STATE(67), @@ -22655,19 +22662,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [68] = { [sym_declaration] = STATE(66), [sym_type_definition] = STATE(66), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), [sym_compound_statement] = STATE(66), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(66), [sym_labeled_statement] = STATE(66), [sym_expression_statement] = STATE(66), @@ -22682,33 +22689,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(66), [sym_seh_try_statement] = STATE(66), [sym_seh_leave_statement] = STATE(66), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(358), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [aux_sym_case_statement_repeat1] = STATE(66), @@ -22797,19 +22804,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [69] = { [sym_declaration] = STATE(65), [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1145), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(458), - [sym_ms_declspec_modifier] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(456), + [sym_ms_declspec_modifier] = STATE(750), [sym_compound_statement] = STATE(65), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_attributed_statement] = STATE(65), [sym_labeled_statement] = STATE(65), [sym_expression_statement] = STATE(65), @@ -22824,33 +22831,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(65), [sym_seh_try_statement] = STATE(65), [sym_seh_leave_statement] = STATE(65), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_attributed_declarator_repeat1] = STATE(358), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [aux_sym_case_statement_repeat1] = STATE(65), @@ -22937,47 +22944,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [70] = { - [sym_declaration] = STATE(505), - [sym__declaration_modifiers] = STATE(749), + [sym_declaration] = STATE(503), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1147), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(750), + [sym_ms_declspec_modifier] = STATE(750), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym__for_statement_body] = STATE(1886), [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1955), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(1100), [anon_sym_LPAREN2] = ACTIONS(19), @@ -23048,47 +23055,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [71] = { - [sym_declaration] = STATE(505), - [sym__declaration_modifiers] = STATE(749), + [sym_declaration] = STATE(503), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1147), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(750), + [sym_ms_declspec_modifier] = STATE(750), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym__for_statement_body] = STATE(1940), [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1955), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(1100), [anon_sym_LPAREN2] = ACTIONS(19), @@ -23159,47 +23166,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [72] = { - [sym_declaration] = STATE(505), - [sym__declaration_modifiers] = STATE(749), + [sym_declaration] = STATE(503), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1147), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(750), + [sym_ms_declspec_modifier] = STATE(750), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym__for_statement_body] = STATE(1951), [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1955), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(1100), [anon_sym_LPAREN2] = ACTIONS(19), @@ -23270,47 +23277,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [73] = { - [sym_declaration] = STATE(505), - [sym__declaration_modifiers] = STATE(749), + [sym_declaration] = STATE(503), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1147), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(750), + [sym_ms_declspec_modifier] = STATE(750), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym__for_statement_body] = STATE(1972), [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1955), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(1100), [anon_sym_LPAREN2] = ACTIONS(19), @@ -23381,47 +23388,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [74] = { - [sym_declaration] = STATE(505), - [sym__declaration_modifiers] = STATE(749), + [sym_declaration] = STATE(503), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1147), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(750), + [sym_ms_declspec_modifier] = STATE(750), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym__for_statement_body] = STATE(1882), [sym__expression] = STATE(1039), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1955), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(1100), [anon_sym_LPAREN2] = ACTIONS(19), @@ -31826,31 +31833,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [157] = { - [sym__expression] = STATE(722), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(700), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(700), - [sym_call_expression] = STATE(700), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(700), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(700), - [sym_initializer_list] = STATE(714), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(735), - [sym_null] = STATE(700), + [sym__expression] = STATE(733), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(708), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(708), + [sym_call_expression] = STATE(708), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(708), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(708), + [sym_initializer_list] = STATE(713), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(708), [sym_identifier] = ACTIONS(1350), [anon_sym_COMMA] = ACTIONS(1352), [aux_sym_preproc_if_token2] = ACTIONS(1352), @@ -32024,31 +32031,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [159] = { - [sym__expression] = STATE(722), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(700), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(700), - [sym_call_expression] = STATE(700), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(700), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(700), - [sym_initializer_list] = STATE(714), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym__expression] = STATE(733), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(708), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(708), + [sym_call_expression] = STATE(708), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(708), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(708), + [sym_initializer_list] = STATE(713), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym_identifier] = ACTIONS(1364), [anon_sym_COMMA] = ACTIONS(1352), [anon_sym_RPAREN] = ACTIONS(1352), @@ -33300,109 +33307,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [172] = { - [ts_builtin_sym_end] = ACTIONS(1202), - [sym_identifier] = ACTIONS(1200), - [aux_sym_preproc_include_token1] = ACTIONS(1200), - [aux_sym_preproc_def_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), - [sym_preproc_directive] = ACTIONS(1200), - [anon_sym_LPAREN2] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1202), - [anon_sym_TILDE] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1202), - [anon_sym___extension__] = ACTIONS(1200), - [anon_sym_typedef] = ACTIONS(1200), - [anon_sym_extern] = ACTIONS(1200), - [anon_sym___attribute__] = ACTIONS(1200), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), - [anon_sym___declspec] = ACTIONS(1200), - [anon_sym___cdecl] = ACTIONS(1200), - [anon_sym___clrcall] = ACTIONS(1200), - [anon_sym___stdcall] = ACTIONS(1200), - [anon_sym___fastcall] = ACTIONS(1200), - [anon_sym___thiscall] = ACTIONS(1200), - [anon_sym___vectorcall] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_signed] = ACTIONS(1200), - [anon_sym_unsigned] = ACTIONS(1200), - [anon_sym_long] = ACTIONS(1200), - [anon_sym_short] = ACTIONS(1200), - [anon_sym_static] = ACTIONS(1200), - [anon_sym_auto] = ACTIONS(1200), - [anon_sym_register] = ACTIONS(1200), - [anon_sym_inline] = ACTIONS(1200), - [anon_sym___inline] = ACTIONS(1200), - [anon_sym___inline__] = ACTIONS(1200), - [anon_sym___forceinline] = ACTIONS(1200), - [anon_sym_thread_local] = ACTIONS(1200), - [anon_sym___thread] = ACTIONS(1200), - [anon_sym_const] = ACTIONS(1200), - [anon_sym_constexpr] = ACTIONS(1200), - [anon_sym_volatile] = ACTIONS(1200), - [anon_sym_restrict] = ACTIONS(1200), - [anon_sym___restrict__] = ACTIONS(1200), - [anon_sym__Atomic] = ACTIONS(1200), - [anon_sym__Noreturn] = ACTIONS(1200), - [anon_sym_noreturn] = ACTIONS(1200), - [sym_primitive_type] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1200), - [anon_sym_struct] = ACTIONS(1200), - [anon_sym_union] = ACTIONS(1200), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_else] = ACTIONS(1200), - [anon_sym_switch] = ACTIONS(1200), - [anon_sym_case] = ACTIONS(1200), - [anon_sym_default] = ACTIONS(1200), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_do] = ACTIONS(1200), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_goto] = ACTIONS(1200), - [anon_sym___try] = ACTIONS(1200), - [anon_sym___leave] = ACTIONS(1200), - [anon_sym_DASH_DASH] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1202), - [anon_sym_sizeof] = ACTIONS(1200), - [anon_sym___alignof__] = ACTIONS(1200), - [anon_sym___alignof] = ACTIONS(1200), - [anon_sym__alignof] = ACTIONS(1200), - [anon_sym_alignof] = ACTIONS(1200), - [anon_sym__Alignof] = ACTIONS(1200), - [anon_sym_offsetof] = ACTIONS(1200), - [anon_sym__Generic] = ACTIONS(1200), - [anon_sym_asm] = ACTIONS(1200), - [anon_sym___asm__] = ACTIONS(1200), - [sym_number_literal] = ACTIONS(1202), - [anon_sym_L_SQUOTE] = ACTIONS(1202), - [anon_sym_u_SQUOTE] = ACTIONS(1202), - [anon_sym_U_SQUOTE] = ACTIONS(1202), - [anon_sym_u8_SQUOTE] = ACTIONS(1202), - [anon_sym_SQUOTE] = ACTIONS(1202), - [anon_sym_L_DQUOTE] = ACTIONS(1202), - [anon_sym_u_DQUOTE] = ACTIONS(1202), - [anon_sym_U_DQUOTE] = ACTIONS(1202), - [anon_sym_u8_DQUOTE] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(1202), - [sym_true] = ACTIONS(1200), - [sym_false] = ACTIONS(1200), - [anon_sym_NULL] = ACTIONS(1200), - [anon_sym_nullptr] = ACTIONS(1200), - [sym_comment] = ACTIONS(3), - }, - [173] = { + [ts_builtin_sym_end] = ACTIONS(1222), [sym_identifier] = ACTIONS(1220), [aux_sym_preproc_include_token1] = ACTIONS(1220), [aux_sym_preproc_def_token1] = ACTIONS(1220), [aux_sym_preproc_if_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token2] = ACTIONS(1220), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), + [sym_preproc_directive] = ACTIONS(1220), + [anon_sym_LPAREN2] = ACTIONS(1222), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1222), + [anon_sym___extension__] = ACTIONS(1220), + [anon_sym_typedef] = ACTIONS(1220), + [anon_sym_extern] = ACTIONS(1220), + [anon_sym___attribute__] = ACTIONS(1220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(1220), + [anon_sym___cdecl] = ACTIONS(1220), + [anon_sym___clrcall] = ACTIONS(1220), + [anon_sym___stdcall] = ACTIONS(1220), + [anon_sym___fastcall] = ACTIONS(1220), + [anon_sym___thiscall] = ACTIONS(1220), + [anon_sym___vectorcall] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_signed] = ACTIONS(1220), + [anon_sym_unsigned] = ACTIONS(1220), + [anon_sym_long] = ACTIONS(1220), + [anon_sym_short] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1220), + [anon_sym_auto] = ACTIONS(1220), + [anon_sym_register] = ACTIONS(1220), + [anon_sym_inline] = ACTIONS(1220), + [anon_sym___inline] = ACTIONS(1220), + [anon_sym___inline__] = ACTIONS(1220), + [anon_sym___forceinline] = ACTIONS(1220), + [anon_sym_thread_local] = ACTIONS(1220), + [anon_sym___thread] = ACTIONS(1220), + [anon_sym_const] = ACTIONS(1220), + [anon_sym_constexpr] = ACTIONS(1220), + [anon_sym_volatile] = ACTIONS(1220), + [anon_sym_restrict] = ACTIONS(1220), + [anon_sym___restrict__] = ACTIONS(1220), + [anon_sym__Atomic] = ACTIONS(1220), + [anon_sym__Noreturn] = ACTIONS(1220), + [anon_sym_noreturn] = ACTIONS(1220), + [sym_primitive_type] = ACTIONS(1220), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1220), + [anon_sym_union] = ACTIONS(1220), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_else] = ACTIONS(1220), + [anon_sym_switch] = ACTIONS(1220), + [anon_sym_case] = ACTIONS(1220), + [anon_sym_default] = ACTIONS(1220), + [anon_sym_while] = ACTIONS(1220), + [anon_sym_do] = ACTIONS(1220), + [anon_sym_for] = ACTIONS(1220), + [anon_sym_return] = ACTIONS(1220), + [anon_sym_break] = ACTIONS(1220), + [anon_sym_continue] = ACTIONS(1220), + [anon_sym_goto] = ACTIONS(1220), + [anon_sym___try] = ACTIONS(1220), + [anon_sym___leave] = ACTIONS(1220), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_sizeof] = ACTIONS(1220), + [anon_sym___alignof__] = ACTIONS(1220), + [anon_sym___alignof] = ACTIONS(1220), + [anon_sym__alignof] = ACTIONS(1220), + [anon_sym_alignof] = ACTIONS(1220), + [anon_sym__Alignof] = ACTIONS(1220), + [anon_sym_offsetof] = ACTIONS(1220), + [anon_sym__Generic] = ACTIONS(1220), + [anon_sym_asm] = ACTIONS(1220), + [anon_sym___asm__] = ACTIONS(1220), + [sym_number_literal] = ACTIONS(1222), + [anon_sym_L_SQUOTE] = ACTIONS(1222), + [anon_sym_u_SQUOTE] = ACTIONS(1222), + [anon_sym_U_SQUOTE] = ACTIONS(1222), + [anon_sym_u8_SQUOTE] = ACTIONS(1222), + [anon_sym_SQUOTE] = ACTIONS(1222), + [anon_sym_L_DQUOTE] = ACTIONS(1222), + [anon_sym_u_DQUOTE] = ACTIONS(1222), + [anon_sym_U_DQUOTE] = ACTIONS(1222), + [anon_sym_u8_DQUOTE] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(1222), + [sym_true] = ACTIONS(1220), + [sym_false] = ACTIONS(1220), + [anon_sym_NULL] = ACTIONS(1220), + [anon_sym_nullptr] = ACTIONS(1220), + [sym_comment] = ACTIONS(3), + }, + [173] = { + [sym_identifier] = ACTIONS(1220), + [aux_sym_preproc_include_token1] = ACTIONS(1220), + [aux_sym_preproc_def_token1] = ACTIONS(1220), + [aux_sym_preproc_if_token1] = ACTIONS(1220), + [aux_sym_preproc_if_token2] = ACTIONS(1220), [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), [sym_preproc_directive] = ACTIONS(1220), @@ -33594,101 +33601,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [175] = { - [ts_builtin_sym_end] = ACTIONS(1222), - [sym_identifier] = ACTIONS(1220), - [aux_sym_preproc_include_token1] = ACTIONS(1220), - [aux_sym_preproc_def_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), - [sym_preproc_directive] = ACTIONS(1220), - [anon_sym_LPAREN2] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_TILDE] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym___extension__] = ACTIONS(1220), - [anon_sym_typedef] = ACTIONS(1220), - [anon_sym_extern] = ACTIONS(1220), - [anon_sym___attribute__] = ACTIONS(1220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), - [anon_sym___declspec] = ACTIONS(1220), - [anon_sym___cdecl] = ACTIONS(1220), - [anon_sym___clrcall] = ACTIONS(1220), - [anon_sym___stdcall] = ACTIONS(1220), - [anon_sym___fastcall] = ACTIONS(1220), - [anon_sym___thiscall] = ACTIONS(1220), - [anon_sym___vectorcall] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_signed] = ACTIONS(1220), - [anon_sym_unsigned] = ACTIONS(1220), - [anon_sym_long] = ACTIONS(1220), - [anon_sym_short] = ACTIONS(1220), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_auto] = ACTIONS(1220), - [anon_sym_register] = ACTIONS(1220), - [anon_sym_inline] = ACTIONS(1220), - [anon_sym___inline] = ACTIONS(1220), - [anon_sym___inline__] = ACTIONS(1220), - [anon_sym___forceinline] = ACTIONS(1220), - [anon_sym_thread_local] = ACTIONS(1220), - [anon_sym___thread] = ACTIONS(1220), - [anon_sym_const] = ACTIONS(1220), - [anon_sym_constexpr] = ACTIONS(1220), - [anon_sym_volatile] = ACTIONS(1220), - [anon_sym_restrict] = ACTIONS(1220), - [anon_sym___restrict__] = ACTIONS(1220), - [anon_sym__Atomic] = ACTIONS(1220), - [anon_sym__Noreturn] = ACTIONS(1220), - [anon_sym_noreturn] = ACTIONS(1220), - [sym_primitive_type] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1220), - [anon_sym_struct] = ACTIONS(1220), - [anon_sym_union] = ACTIONS(1220), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_else] = ACTIONS(1220), - [anon_sym_switch] = ACTIONS(1220), - [anon_sym_case] = ACTIONS(1220), - [anon_sym_default] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1220), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_goto] = ACTIONS(1220), - [anon_sym___try] = ACTIONS(1220), - [anon_sym___leave] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_sizeof] = ACTIONS(1220), - [anon_sym___alignof__] = ACTIONS(1220), - [anon_sym___alignof] = ACTIONS(1220), - [anon_sym__alignof] = ACTIONS(1220), - [anon_sym_alignof] = ACTIONS(1220), - [anon_sym__Alignof] = ACTIONS(1220), - [anon_sym_offsetof] = ACTIONS(1220), - [anon_sym__Generic] = ACTIONS(1220), - [anon_sym_asm] = ACTIONS(1220), - [anon_sym___asm__] = ACTIONS(1220), - [sym_number_literal] = ACTIONS(1222), - [anon_sym_L_SQUOTE] = ACTIONS(1222), - [anon_sym_u_SQUOTE] = ACTIONS(1222), - [anon_sym_U_SQUOTE] = ACTIONS(1222), - [anon_sym_u8_SQUOTE] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1222), - [anon_sym_L_DQUOTE] = ACTIONS(1222), - [anon_sym_u_DQUOTE] = ACTIONS(1222), - [anon_sym_U_DQUOTE] = ACTIONS(1222), - [anon_sym_u8_DQUOTE] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_true] = ACTIONS(1220), - [sym_false] = ACTIONS(1220), - [anon_sym_NULL] = ACTIONS(1220), - [anon_sym_nullptr] = ACTIONS(1220), + [ts_builtin_sym_end] = ACTIONS(1202), + [sym_identifier] = ACTIONS(1200), + [aux_sym_preproc_include_token1] = ACTIONS(1200), + [aux_sym_preproc_def_token1] = ACTIONS(1200), + [aux_sym_preproc_if_token1] = ACTIONS(1200), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), + [sym_preproc_directive] = ACTIONS(1200), + [anon_sym_LPAREN2] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1202), + [anon_sym_SEMI] = ACTIONS(1202), + [anon_sym___extension__] = ACTIONS(1200), + [anon_sym_typedef] = ACTIONS(1200), + [anon_sym_extern] = ACTIONS(1200), + [anon_sym___attribute__] = ACTIONS(1200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), + [anon_sym___declspec] = ACTIONS(1200), + [anon_sym___cdecl] = ACTIONS(1200), + [anon_sym___clrcall] = ACTIONS(1200), + [anon_sym___stdcall] = ACTIONS(1200), + [anon_sym___fastcall] = ACTIONS(1200), + [anon_sym___thiscall] = ACTIONS(1200), + [anon_sym___vectorcall] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_signed] = ACTIONS(1200), + [anon_sym_unsigned] = ACTIONS(1200), + [anon_sym_long] = ACTIONS(1200), + [anon_sym_short] = ACTIONS(1200), + [anon_sym_static] = ACTIONS(1200), + [anon_sym_auto] = ACTIONS(1200), + [anon_sym_register] = ACTIONS(1200), + [anon_sym_inline] = ACTIONS(1200), + [anon_sym___inline] = ACTIONS(1200), + [anon_sym___inline__] = ACTIONS(1200), + [anon_sym___forceinline] = ACTIONS(1200), + [anon_sym_thread_local] = ACTIONS(1200), + [anon_sym___thread] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1200), + [anon_sym_constexpr] = ACTIONS(1200), + [anon_sym_volatile] = ACTIONS(1200), + [anon_sym_restrict] = ACTIONS(1200), + [anon_sym___restrict__] = ACTIONS(1200), + [anon_sym__Atomic] = ACTIONS(1200), + [anon_sym__Noreturn] = ACTIONS(1200), + [anon_sym_noreturn] = ACTIONS(1200), + [sym_primitive_type] = ACTIONS(1200), + [anon_sym_enum] = ACTIONS(1200), + [anon_sym_struct] = ACTIONS(1200), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_if] = ACTIONS(1200), + [anon_sym_else] = ACTIONS(1200), + [anon_sym_switch] = ACTIONS(1200), + [anon_sym_case] = ACTIONS(1200), + [anon_sym_default] = ACTIONS(1200), + [anon_sym_while] = ACTIONS(1200), + [anon_sym_do] = ACTIONS(1200), + [anon_sym_for] = ACTIONS(1200), + [anon_sym_return] = ACTIONS(1200), + [anon_sym_break] = ACTIONS(1200), + [anon_sym_continue] = ACTIONS(1200), + [anon_sym_goto] = ACTIONS(1200), + [anon_sym___try] = ACTIONS(1200), + [anon_sym___leave] = ACTIONS(1200), + [anon_sym_DASH_DASH] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1202), + [anon_sym_sizeof] = ACTIONS(1200), + [anon_sym___alignof__] = ACTIONS(1200), + [anon_sym___alignof] = ACTIONS(1200), + [anon_sym__alignof] = ACTIONS(1200), + [anon_sym_alignof] = ACTIONS(1200), + [anon_sym__Alignof] = ACTIONS(1200), + [anon_sym_offsetof] = ACTIONS(1200), + [anon_sym__Generic] = ACTIONS(1200), + [anon_sym_asm] = ACTIONS(1200), + [anon_sym___asm__] = ACTIONS(1200), + [sym_number_literal] = ACTIONS(1202), + [anon_sym_L_SQUOTE] = ACTIONS(1202), + [anon_sym_u_SQUOTE] = ACTIONS(1202), + [anon_sym_U_SQUOTE] = ACTIONS(1202), + [anon_sym_u8_SQUOTE] = ACTIONS(1202), + [anon_sym_SQUOTE] = ACTIONS(1202), + [anon_sym_L_DQUOTE] = ACTIONS(1202), + [anon_sym_u_DQUOTE] = ACTIONS(1202), + [anon_sym_U_DQUOTE] = ACTIONS(1202), + [anon_sym_u8_DQUOTE] = ACTIONS(1202), + [anon_sym_DQUOTE] = ACTIONS(1202), + [sym_true] = ACTIONS(1200), + [sym_false] = ACTIONS(1200), + [anon_sym_NULL] = ACTIONS(1200), + [anon_sym_nullptr] = ACTIONS(1200), [sym_comment] = ACTIONS(3), }, [176] = { @@ -33888,101 +33895,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [178] = { - [ts_builtin_sym_end] = ACTIONS(1178), - [sym_identifier] = ACTIONS(1176), - [aux_sym_preproc_include_token1] = ACTIONS(1176), - [aux_sym_preproc_def_token1] = ACTIONS(1176), - [aux_sym_preproc_if_token1] = ACTIONS(1176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1176), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1176), - [sym_preproc_directive] = ACTIONS(1176), - [anon_sym_LPAREN2] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1178), - [anon_sym_TILDE] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1176), - [anon_sym_PLUS] = ACTIONS(1176), - [anon_sym_STAR] = ACTIONS(1178), - [anon_sym_AMP] = ACTIONS(1178), - [anon_sym_SEMI] = ACTIONS(1178), - [anon_sym___extension__] = ACTIONS(1176), - [anon_sym_typedef] = ACTIONS(1176), - [anon_sym_extern] = ACTIONS(1176), - [anon_sym___attribute__] = ACTIONS(1176), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1178), - [anon_sym___declspec] = ACTIONS(1176), - [anon_sym___cdecl] = ACTIONS(1176), - [anon_sym___clrcall] = ACTIONS(1176), - [anon_sym___stdcall] = ACTIONS(1176), - [anon_sym___fastcall] = ACTIONS(1176), - [anon_sym___thiscall] = ACTIONS(1176), - [anon_sym___vectorcall] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_signed] = ACTIONS(1176), - [anon_sym_unsigned] = ACTIONS(1176), - [anon_sym_long] = ACTIONS(1176), - [anon_sym_short] = ACTIONS(1176), - [anon_sym_static] = ACTIONS(1176), - [anon_sym_auto] = ACTIONS(1176), - [anon_sym_register] = ACTIONS(1176), - [anon_sym_inline] = ACTIONS(1176), - [anon_sym___inline] = ACTIONS(1176), - [anon_sym___inline__] = ACTIONS(1176), - [anon_sym___forceinline] = ACTIONS(1176), - [anon_sym_thread_local] = ACTIONS(1176), - [anon_sym___thread] = ACTIONS(1176), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_constexpr] = ACTIONS(1176), - [anon_sym_volatile] = ACTIONS(1176), - [anon_sym_restrict] = ACTIONS(1176), - [anon_sym___restrict__] = ACTIONS(1176), - [anon_sym__Atomic] = ACTIONS(1176), - [anon_sym__Noreturn] = ACTIONS(1176), - [anon_sym_noreturn] = ACTIONS(1176), - [sym_primitive_type] = ACTIONS(1176), - [anon_sym_enum] = ACTIONS(1176), - [anon_sym_struct] = ACTIONS(1176), - [anon_sym_union] = ACTIONS(1176), - [anon_sym_if] = ACTIONS(1176), - [anon_sym_else] = ACTIONS(1176), - [anon_sym_switch] = ACTIONS(1176), - [anon_sym_case] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1176), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_do] = ACTIONS(1176), - [anon_sym_for] = ACTIONS(1176), - [anon_sym_return] = ACTIONS(1176), - [anon_sym_break] = ACTIONS(1176), - [anon_sym_continue] = ACTIONS(1176), - [anon_sym_goto] = ACTIONS(1176), - [anon_sym___try] = ACTIONS(1176), - [anon_sym___leave] = ACTIONS(1176), - [anon_sym_DASH_DASH] = ACTIONS(1178), - [anon_sym_PLUS_PLUS] = ACTIONS(1178), - [anon_sym_sizeof] = ACTIONS(1176), - [anon_sym___alignof__] = ACTIONS(1176), - [anon_sym___alignof] = ACTIONS(1176), - [anon_sym__alignof] = ACTIONS(1176), - [anon_sym_alignof] = ACTIONS(1176), - [anon_sym__Alignof] = ACTIONS(1176), - [anon_sym_offsetof] = ACTIONS(1176), - [anon_sym__Generic] = ACTIONS(1176), - [anon_sym_asm] = ACTIONS(1176), - [anon_sym___asm__] = ACTIONS(1176), - [sym_number_literal] = ACTIONS(1178), - [anon_sym_L_SQUOTE] = ACTIONS(1178), - [anon_sym_u_SQUOTE] = ACTIONS(1178), - [anon_sym_U_SQUOTE] = ACTIONS(1178), - [anon_sym_u8_SQUOTE] = ACTIONS(1178), - [anon_sym_SQUOTE] = ACTIONS(1178), - [anon_sym_L_DQUOTE] = ACTIONS(1178), - [anon_sym_u_DQUOTE] = ACTIONS(1178), - [anon_sym_U_DQUOTE] = ACTIONS(1178), - [anon_sym_u8_DQUOTE] = ACTIONS(1178), - [anon_sym_DQUOTE] = ACTIONS(1178), - [sym_true] = ACTIONS(1176), - [sym_false] = ACTIONS(1176), - [anon_sym_NULL] = ACTIONS(1176), - [anon_sym_nullptr] = ACTIONS(1176), + [ts_builtin_sym_end] = ACTIONS(1218), + [sym_identifier] = ACTIONS(1216), + [aux_sym_preproc_include_token1] = ACTIONS(1216), + [aux_sym_preproc_def_token1] = ACTIONS(1216), + [aux_sym_preproc_if_token1] = ACTIONS(1216), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1216), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1216), + [sym_preproc_directive] = ACTIONS(1216), + [anon_sym_LPAREN2] = ACTIONS(1218), + [anon_sym_BANG] = ACTIONS(1218), + [anon_sym_TILDE] = ACTIONS(1218), + [anon_sym_DASH] = ACTIONS(1216), + [anon_sym_PLUS] = ACTIONS(1216), + [anon_sym_STAR] = ACTIONS(1218), + [anon_sym_AMP] = ACTIONS(1218), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym___extension__] = ACTIONS(1216), + [anon_sym_typedef] = ACTIONS(1216), + [anon_sym_extern] = ACTIONS(1216), + [anon_sym___attribute__] = ACTIONS(1216), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1218), + [anon_sym___declspec] = ACTIONS(1216), + [anon_sym___cdecl] = ACTIONS(1216), + [anon_sym___clrcall] = ACTIONS(1216), + [anon_sym___stdcall] = ACTIONS(1216), + [anon_sym___fastcall] = ACTIONS(1216), + [anon_sym___thiscall] = ACTIONS(1216), + [anon_sym___vectorcall] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(1216), + [anon_sym_auto] = ACTIONS(1216), + [anon_sym_register] = ACTIONS(1216), + [anon_sym_inline] = ACTIONS(1216), + [anon_sym___inline] = ACTIONS(1216), + [anon_sym___inline__] = ACTIONS(1216), + [anon_sym___forceinline] = ACTIONS(1216), + [anon_sym_thread_local] = ACTIONS(1216), + [anon_sym___thread] = ACTIONS(1216), + [anon_sym_const] = ACTIONS(1216), + [anon_sym_constexpr] = ACTIONS(1216), + [anon_sym_volatile] = ACTIONS(1216), + [anon_sym_restrict] = ACTIONS(1216), + [anon_sym___restrict__] = ACTIONS(1216), + [anon_sym__Atomic] = ACTIONS(1216), + [anon_sym__Noreturn] = ACTIONS(1216), + [anon_sym_noreturn] = ACTIONS(1216), + [sym_primitive_type] = ACTIONS(1216), + [anon_sym_enum] = ACTIONS(1216), + [anon_sym_struct] = ACTIONS(1216), + [anon_sym_union] = ACTIONS(1216), + [anon_sym_if] = ACTIONS(1216), + [anon_sym_else] = ACTIONS(1216), + [anon_sym_switch] = ACTIONS(1216), + [anon_sym_case] = ACTIONS(1216), + [anon_sym_default] = ACTIONS(1216), + [anon_sym_while] = ACTIONS(1216), + [anon_sym_do] = ACTIONS(1216), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(1216), + [anon_sym_break] = ACTIONS(1216), + [anon_sym_continue] = ACTIONS(1216), + [anon_sym_goto] = ACTIONS(1216), + [anon_sym___try] = ACTIONS(1216), + [anon_sym___leave] = ACTIONS(1216), + [anon_sym_DASH_DASH] = ACTIONS(1218), + [anon_sym_PLUS_PLUS] = ACTIONS(1218), + [anon_sym_sizeof] = ACTIONS(1216), + [anon_sym___alignof__] = ACTIONS(1216), + [anon_sym___alignof] = ACTIONS(1216), + [anon_sym__alignof] = ACTIONS(1216), + [anon_sym_alignof] = ACTIONS(1216), + [anon_sym__Alignof] = ACTIONS(1216), + [anon_sym_offsetof] = ACTIONS(1216), + [anon_sym__Generic] = ACTIONS(1216), + [anon_sym_asm] = ACTIONS(1216), + [anon_sym___asm__] = ACTIONS(1216), + [sym_number_literal] = ACTIONS(1218), + [anon_sym_L_SQUOTE] = ACTIONS(1218), + [anon_sym_u_SQUOTE] = ACTIONS(1218), + [anon_sym_U_SQUOTE] = ACTIONS(1218), + [anon_sym_u8_SQUOTE] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1218), + [anon_sym_L_DQUOTE] = ACTIONS(1218), + [anon_sym_u_DQUOTE] = ACTIONS(1218), + [anon_sym_U_DQUOTE] = ACTIONS(1218), + [anon_sym_u8_DQUOTE] = ACTIONS(1218), + [anon_sym_DQUOTE] = ACTIONS(1218), + [sym_true] = ACTIONS(1216), + [sym_false] = ACTIONS(1216), + [anon_sym_NULL] = ACTIONS(1216), + [anon_sym_nullptr] = ACTIONS(1216), [sym_comment] = ACTIONS(3), }, [179] = { @@ -34084,101 +34091,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [180] = { - [ts_builtin_sym_end] = ACTIONS(1218), - [sym_identifier] = ACTIONS(1216), - [aux_sym_preproc_include_token1] = ACTIONS(1216), - [aux_sym_preproc_def_token1] = ACTIONS(1216), - [aux_sym_preproc_if_token1] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1216), - [sym_preproc_directive] = ACTIONS(1216), - [anon_sym_LPAREN2] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_STAR] = ACTIONS(1218), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym___extension__] = ACTIONS(1216), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym___attribute__] = ACTIONS(1216), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1218), - [anon_sym___declspec] = ACTIONS(1216), - [anon_sym___cdecl] = ACTIONS(1216), - [anon_sym___clrcall] = ACTIONS(1216), - [anon_sym___stdcall] = ACTIONS(1216), - [anon_sym___fastcall] = ACTIONS(1216), - [anon_sym___thiscall] = ACTIONS(1216), - [anon_sym___vectorcall] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1218), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym___inline] = ACTIONS(1216), - [anon_sym___inline__] = ACTIONS(1216), - [anon_sym___forceinline] = ACTIONS(1216), - [anon_sym_thread_local] = ACTIONS(1216), - [anon_sym___thread] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_constexpr] = ACTIONS(1216), - [anon_sym_volatile] = ACTIONS(1216), - [anon_sym_restrict] = ACTIONS(1216), - [anon_sym___restrict__] = ACTIONS(1216), - [anon_sym__Atomic] = ACTIONS(1216), - [anon_sym__Noreturn] = ACTIONS(1216), - [anon_sym_noreturn] = ACTIONS(1216), - [sym_primitive_type] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(1216), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_case] = ACTIONS(1216), - [anon_sym_default] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym___try] = ACTIONS(1216), - [anon_sym___leave] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1218), - [anon_sym_PLUS_PLUS] = ACTIONS(1218), - [anon_sym_sizeof] = ACTIONS(1216), - [anon_sym___alignof__] = ACTIONS(1216), - [anon_sym___alignof] = ACTIONS(1216), - [anon_sym__alignof] = ACTIONS(1216), - [anon_sym_alignof] = ACTIONS(1216), - [anon_sym__Alignof] = ACTIONS(1216), - [anon_sym_offsetof] = ACTIONS(1216), - [anon_sym__Generic] = ACTIONS(1216), - [anon_sym_asm] = ACTIONS(1216), - [anon_sym___asm__] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1218), - [anon_sym_L_SQUOTE] = ACTIONS(1218), - [anon_sym_u_SQUOTE] = ACTIONS(1218), - [anon_sym_U_SQUOTE] = ACTIONS(1218), - [anon_sym_u8_SQUOTE] = ACTIONS(1218), - [anon_sym_SQUOTE] = ACTIONS(1218), - [anon_sym_L_DQUOTE] = ACTIONS(1218), - [anon_sym_u_DQUOTE] = ACTIONS(1218), - [anon_sym_U_DQUOTE] = ACTIONS(1218), - [anon_sym_u8_DQUOTE] = ACTIONS(1218), - [anon_sym_DQUOTE] = ACTIONS(1218), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [anon_sym_NULL] = ACTIONS(1216), - [anon_sym_nullptr] = ACTIONS(1216), + [ts_builtin_sym_end] = ACTIONS(1178), + [sym_identifier] = ACTIONS(1176), + [aux_sym_preproc_include_token1] = ACTIONS(1176), + [aux_sym_preproc_def_token1] = ACTIONS(1176), + [aux_sym_preproc_if_token1] = ACTIONS(1176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1176), + [sym_preproc_directive] = ACTIONS(1176), + [anon_sym_LPAREN2] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1178), + [anon_sym_TILDE] = ACTIONS(1178), + [anon_sym_DASH] = ACTIONS(1176), + [anon_sym_PLUS] = ACTIONS(1176), + [anon_sym_STAR] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_SEMI] = ACTIONS(1178), + [anon_sym___extension__] = ACTIONS(1176), + [anon_sym_typedef] = ACTIONS(1176), + [anon_sym_extern] = ACTIONS(1176), + [anon_sym___attribute__] = ACTIONS(1176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1178), + [anon_sym___declspec] = ACTIONS(1176), + [anon_sym___cdecl] = ACTIONS(1176), + [anon_sym___clrcall] = ACTIONS(1176), + [anon_sym___stdcall] = ACTIONS(1176), + [anon_sym___fastcall] = ACTIONS(1176), + [anon_sym___thiscall] = ACTIONS(1176), + [anon_sym___vectorcall] = ACTIONS(1176), + [anon_sym_LBRACE] = ACTIONS(1178), + [anon_sym_signed] = ACTIONS(1176), + [anon_sym_unsigned] = ACTIONS(1176), + [anon_sym_long] = ACTIONS(1176), + [anon_sym_short] = ACTIONS(1176), + [anon_sym_static] = ACTIONS(1176), + [anon_sym_auto] = ACTIONS(1176), + [anon_sym_register] = ACTIONS(1176), + [anon_sym_inline] = ACTIONS(1176), + [anon_sym___inline] = ACTIONS(1176), + [anon_sym___inline__] = ACTIONS(1176), + [anon_sym___forceinline] = ACTIONS(1176), + [anon_sym_thread_local] = ACTIONS(1176), + [anon_sym___thread] = ACTIONS(1176), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_constexpr] = ACTIONS(1176), + [anon_sym_volatile] = ACTIONS(1176), + [anon_sym_restrict] = ACTIONS(1176), + [anon_sym___restrict__] = ACTIONS(1176), + [anon_sym__Atomic] = ACTIONS(1176), + [anon_sym__Noreturn] = ACTIONS(1176), + [anon_sym_noreturn] = ACTIONS(1176), + [sym_primitive_type] = ACTIONS(1176), + [anon_sym_enum] = ACTIONS(1176), + [anon_sym_struct] = ACTIONS(1176), + [anon_sym_union] = ACTIONS(1176), + [anon_sym_if] = ACTIONS(1176), + [anon_sym_else] = ACTIONS(1176), + [anon_sym_switch] = ACTIONS(1176), + [anon_sym_case] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1176), + [anon_sym_while] = ACTIONS(1176), + [anon_sym_do] = ACTIONS(1176), + [anon_sym_for] = ACTIONS(1176), + [anon_sym_return] = ACTIONS(1176), + [anon_sym_break] = ACTIONS(1176), + [anon_sym_continue] = ACTIONS(1176), + [anon_sym_goto] = ACTIONS(1176), + [anon_sym___try] = ACTIONS(1176), + [anon_sym___leave] = ACTIONS(1176), + [anon_sym_DASH_DASH] = ACTIONS(1178), + [anon_sym_PLUS_PLUS] = ACTIONS(1178), + [anon_sym_sizeof] = ACTIONS(1176), + [anon_sym___alignof__] = ACTIONS(1176), + [anon_sym___alignof] = ACTIONS(1176), + [anon_sym__alignof] = ACTIONS(1176), + [anon_sym_alignof] = ACTIONS(1176), + [anon_sym__Alignof] = ACTIONS(1176), + [anon_sym_offsetof] = ACTIONS(1176), + [anon_sym__Generic] = ACTIONS(1176), + [anon_sym_asm] = ACTIONS(1176), + [anon_sym___asm__] = ACTIONS(1176), + [sym_number_literal] = ACTIONS(1178), + [anon_sym_L_SQUOTE] = ACTIONS(1178), + [anon_sym_u_SQUOTE] = ACTIONS(1178), + [anon_sym_U_SQUOTE] = ACTIONS(1178), + [anon_sym_u8_SQUOTE] = ACTIONS(1178), + [anon_sym_SQUOTE] = ACTIONS(1178), + [anon_sym_L_DQUOTE] = ACTIONS(1178), + [anon_sym_u_DQUOTE] = ACTIONS(1178), + [anon_sym_U_DQUOTE] = ACTIONS(1178), + [anon_sym_u8_DQUOTE] = ACTIONS(1178), + [anon_sym_DQUOTE] = ACTIONS(1178), + [sym_true] = ACTIONS(1176), + [sym_false] = ACTIONS(1176), + [anon_sym_NULL] = ACTIONS(1176), + [anon_sym_nullptr] = ACTIONS(1176), [sym_comment] = ACTIONS(3), }, [181] = { @@ -46938,30 +46945,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(156), [sym_seh_leave_statement] = STATE(156), [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(339), [sym_identifier] = ACTIONS(1374), [anon_sym_LPAREN2] = ACTIONS(19), @@ -47035,30 +47042,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(203), [sym_seh_leave_statement] = STATE(203), [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(339), [sym_identifier] = ACTIONS(1374), [anon_sym_LPAREN2] = ACTIONS(19), @@ -47132,30 +47139,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(200), [sym_seh_leave_statement] = STATE(200), [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(339), [sym_identifier] = ACTIONS(1374), [anon_sym_LPAREN2] = ACTIONS(19), @@ -47228,31 +47235,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(179), [sym_seh_try_statement] = STATE(179), [sym_seh_leave_statement] = STATE(179), - [sym__expression] = STATE(1080), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1084), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(323), [sym_identifier] = ACTIONS(1378), [anon_sym_LPAREN2] = ACTIONS(19), @@ -47325,31 +47332,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(2002), [sym_seh_try_statement] = STATE(2002), [sym_seh_leave_statement] = STATE(2002), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(358), [sym_identifier] = ACTIONS(1380), [anon_sym_LPAREN2] = ACTIONS(19), @@ -47423,30 +47430,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(221), [sym_seh_leave_statement] = STATE(221), [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(316), [sym_identifier] = ACTIONS(1386), [anon_sym_LPAREN2] = ACTIONS(1389), @@ -47519,31 +47526,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(1989), [sym_seh_try_statement] = STATE(1989), [sym_seh_leave_statement] = STATE(1989), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(358), [sym_identifier] = ACTIONS(1380), [anon_sym_LPAREN2] = ACTIONS(19), @@ -47617,30 +47624,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(169), [sym_seh_leave_statement] = STATE(169), [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(339), [sym_identifier] = ACTIONS(1374), [anon_sym_LPAREN2] = ACTIONS(19), @@ -47811,30 +47818,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(231), [sym_seh_leave_statement] = STATE(232), [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(339), [sym_identifier] = ACTIONS(1374), [anon_sym_LPAREN2] = ACTIONS(19), @@ -48101,31 +48108,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(179), [sym_seh_try_statement] = STATE(179), [sym_seh_leave_statement] = STATE(179), - [sym__expression] = STATE(1080), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1084), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(323), [sym_identifier] = ACTIONS(1482), [anon_sym_LPAREN2] = ACTIONS(1389), @@ -49266,30 +49273,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(112), [sym_seh_leave_statement] = STATE(112), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(373), [sym_identifier] = ACTIONS(1530), [anon_sym_LPAREN2] = ACTIONS(19), @@ -49556,31 +49563,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(1894), [sym_seh_try_statement] = STATE(1894), [sym_seh_leave_statement] = STATE(1894), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(358), [sym_identifier] = ACTIONS(1380), [anon_sym_LPAREN2] = ACTIONS(19), @@ -49654,30 +49661,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(221), [sym_seh_leave_statement] = STATE(221), [sym__expression] = STATE(1065), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1805), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(316), [sym_identifier] = ACTIONS(1374), [anon_sym_LPAREN2] = ACTIONS(19), @@ -50138,31 +50145,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(181), [sym_seh_try_statement] = STATE(181), [sym_seh_leave_statement] = STATE(181), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(358), [sym_identifier] = ACTIONS(1380), [anon_sym_LPAREN2] = ACTIONS(19), @@ -50623,31 +50630,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(179), [sym_seh_try_statement] = STATE(179), [sym_seh_leave_statement] = STATE(179), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(349), [sym_identifier] = ACTIONS(1532), [anon_sym_LPAREN2] = ACTIONS(1389), @@ -50720,31 +50727,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(308), [sym_seh_try_statement] = STATE(308), [sym_seh_leave_statement] = STATE(308), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(358), [sym_identifier] = ACTIONS(1380), [anon_sym_LPAREN2] = ACTIONS(19), @@ -50817,31 +50824,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(285), [sym_seh_try_statement] = STATE(285), [sym_seh_leave_statement] = STATE(285), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(358), [sym_identifier] = ACTIONS(1380), [anon_sym_LPAREN2] = ACTIONS(19), @@ -50914,31 +50921,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(451), [sym_seh_try_statement] = STATE(451), [sym_seh_leave_statement] = STATE(451), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(358), [sym_identifier] = ACTIONS(1380), [anon_sym_LPAREN2] = ACTIONS(19), @@ -51108,31 +51115,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(212), [sym_seh_try_statement] = STATE(213), [sym_seh_leave_statement] = STATE(215), - [sym__expression] = STATE(1080), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1084), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(314), [sym_identifier] = ACTIONS(1378), [anon_sym_LPAREN2] = ACTIONS(19), @@ -51205,31 +51212,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(181), [sym_seh_try_statement] = STATE(181), [sym_seh_leave_statement] = STATE(181), - [sym__expression] = STATE(1080), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1084), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(314), [sym_identifier] = ACTIONS(1378), [anon_sym_LPAREN2] = ACTIONS(19), @@ -51399,31 +51406,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(212), [sym_seh_try_statement] = STATE(213), [sym_seh_leave_statement] = STATE(215), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(358), [sym_identifier] = ACTIONS(1380), [anon_sym_LPAREN2] = ACTIONS(19), @@ -51496,31 +51503,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(179), [sym_seh_try_statement] = STATE(179), [sym_seh_leave_statement] = STATE(179), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(349), [sym_identifier] = ACTIONS(1380), [anon_sym_LPAREN2] = ACTIONS(19), @@ -51787,31 +51794,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(160), [sym_seh_try_statement] = STATE(160), [sym_seh_leave_statement] = STATE(160), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(400), [sym_identifier] = ACTIONS(1559), [anon_sym_LPAREN2] = ACTIONS(19), @@ -51884,31 +51891,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(250), [sym_seh_try_statement] = STATE(250), [sym_seh_leave_statement] = STATE(250), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(400), [sym_identifier] = ACTIONS(1559), [anon_sym_LPAREN2] = ACTIONS(19), @@ -51982,30 +51989,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(121), [sym_seh_leave_statement] = STATE(121), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(335), [sym_identifier] = ACTIONS(1530), [anon_sym_LPAREN2] = ACTIONS(19), @@ -52272,31 +52279,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(263), [sym_seh_try_statement] = STATE(263), [sym_seh_leave_statement] = STATE(263), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(400), [sym_identifier] = ACTIONS(1559), [anon_sym_LPAREN2] = ACTIONS(19), @@ -52757,31 +52764,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(241), [sym_seh_try_statement] = STATE(241), [sym_seh_leave_statement] = STATE(241), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(371), [sym_identifier] = ACTIONS(1561), [anon_sym_LPAREN2] = ACTIONS(1389), @@ -52952,30 +52959,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(112), [sym_seh_leave_statement] = STATE(112), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(373), [sym_identifier] = ACTIONS(1603), [anon_sym_LPAREN2] = ACTIONS(1389), @@ -54019,30 +54026,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(96), [sym_seh_leave_statement] = STATE(96), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(335), [sym_identifier] = ACTIONS(1530), [anon_sym_LPAREN2] = ACTIONS(19), @@ -54212,31 +54219,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(308), [sym_seh_try_statement] = STATE(308), [sym_seh_leave_statement] = STATE(308), - [sym__expression] = STATE(1080), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1084), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(314), [sym_identifier] = ACTIONS(1378), [anon_sym_LPAREN2] = ACTIONS(19), @@ -54310,30 +54317,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(77), [sym_seh_leave_statement] = STATE(103), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(335), [sym_identifier] = ACTIONS(1530), [anon_sym_LPAREN2] = ACTIONS(19), @@ -54504,30 +54511,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(99), [sym_seh_leave_statement] = STATE(99), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(335), [sym_identifier] = ACTIONS(1530), [anon_sym_LPAREN2] = ACTIONS(19), @@ -54697,31 +54704,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(158), [sym_seh_try_statement] = STATE(158), [sym_seh_leave_statement] = STATE(158), - [sym__expression] = STATE(1080), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1084), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(314), [sym_identifier] = ACTIONS(1378), [anon_sym_LPAREN2] = ACTIONS(19), @@ -54988,31 +54995,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(297), [sym_seh_try_statement] = STATE(298), [sym_seh_leave_statement] = STATE(299), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(400), [sym_identifier] = ACTIONS(1559), [anon_sym_LPAREN2] = ACTIONS(19), @@ -55182,31 +55189,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(285), [sym_seh_try_statement] = STATE(285), [sym_seh_leave_statement] = STATE(285), - [sym__expression] = STATE(1080), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1084), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1898), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(314), [sym_identifier] = ACTIONS(1378), [anon_sym_LPAREN2] = ACTIONS(19), @@ -55280,30 +55287,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_seh_try_statement] = STATE(75), [sym_seh_leave_statement] = STATE(75), [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1922), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(335), [sym_identifier] = ACTIONS(1530), [anon_sym_LPAREN2] = ACTIONS(19), @@ -55473,31 +55480,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(277), [sym_seh_try_statement] = STATE(277), [sym_seh_leave_statement] = STATE(277), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(400), [sym_identifier] = ACTIONS(1559), [anon_sym_LPAREN2] = ACTIONS(19), @@ -55570,31 +55577,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(241), [sym_seh_try_statement] = STATE(241), [sym_seh_leave_statement] = STATE(241), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(371), [sym_identifier] = ACTIONS(1559), [anon_sym_LPAREN2] = ACTIONS(19), @@ -55861,31 +55868,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(2010), [sym_seh_try_statement] = STATE(2010), [sym_seh_leave_statement] = STATE(2010), - [sym__expression] = STATE(1033), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym__expression] = STATE(1038), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(2003), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [aux_sym_attributed_declarator_repeat1] = STATE(358), [sym_identifier] = ACTIONS(1380), [anon_sym_LPAREN2] = ACTIONS(19), @@ -56133,31 +56140,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [406] = { - [sym__expression] = STATE(869), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(700), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(700), - [sym_call_expression] = STATE(700), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(700), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(700), - [sym_initializer_list] = STATE(714), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym__expression] = STATE(881), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(708), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(708), + [sym_call_expression] = STATE(708), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(708), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(708), + [sym_initializer_list] = STATE(713), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym_identifier] = ACTIONS(1364), [anon_sym_DOT_DOT_DOT] = ACTIONS(1352), [anon_sym_LPAREN2] = ACTIONS(1352), @@ -56510,6 +56517,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [410] = { + [ts_builtin_sym_end] = ACTIONS(1657), + [sym_identifier] = ACTIONS(1659), + [aux_sym_preproc_include_token1] = ACTIONS(1659), + [aux_sym_preproc_def_token1] = ACTIONS(1659), + [aux_sym_preproc_if_token1] = ACTIONS(1659), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1659), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1659), + [sym_preproc_directive] = ACTIONS(1659), + [anon_sym_LPAREN2] = ACTIONS(1657), + [anon_sym_BANG] = ACTIONS(1657), + [anon_sym_TILDE] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_PLUS] = ACTIONS(1659), + [anon_sym_STAR] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1657), + [anon_sym___extension__] = ACTIONS(1659), + [anon_sym_typedef] = ACTIONS(1659), + [anon_sym_extern] = ACTIONS(1659), + [anon_sym___attribute__] = ACTIONS(1659), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1657), + [anon_sym___declspec] = ACTIONS(1659), + [anon_sym___cdecl] = ACTIONS(1659), + [anon_sym___clrcall] = ACTIONS(1659), + [anon_sym___stdcall] = ACTIONS(1659), + [anon_sym___fastcall] = ACTIONS(1659), + [anon_sym___thiscall] = ACTIONS(1659), + [anon_sym___vectorcall] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1657), + [anon_sym_signed] = ACTIONS(1659), + [anon_sym_unsigned] = ACTIONS(1659), + [anon_sym_long] = ACTIONS(1659), + [anon_sym_short] = ACTIONS(1659), + [anon_sym_static] = ACTIONS(1659), + [anon_sym_auto] = ACTIONS(1659), + [anon_sym_register] = ACTIONS(1659), + [anon_sym_inline] = ACTIONS(1659), + [anon_sym___inline] = ACTIONS(1659), + [anon_sym___inline__] = ACTIONS(1659), + [anon_sym___forceinline] = ACTIONS(1659), + [anon_sym_thread_local] = ACTIONS(1659), + [anon_sym___thread] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1659), + [anon_sym_constexpr] = ACTIONS(1659), + [anon_sym_volatile] = ACTIONS(1659), + [anon_sym_restrict] = ACTIONS(1659), + [anon_sym___restrict__] = ACTIONS(1659), + [anon_sym__Atomic] = ACTIONS(1659), + [anon_sym__Noreturn] = ACTIONS(1659), + [anon_sym_noreturn] = ACTIONS(1659), + [sym_primitive_type] = ACTIONS(1659), + [anon_sym_enum] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(1659), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_switch] = ACTIONS(1659), + [anon_sym_case] = ACTIONS(1659), + [anon_sym_default] = ACTIONS(1659), + [anon_sym_while] = ACTIONS(1659), + [anon_sym_do] = ACTIONS(1659), + [anon_sym_for] = ACTIONS(1659), + [anon_sym_return] = ACTIONS(1659), + [anon_sym_break] = ACTIONS(1659), + [anon_sym_continue] = ACTIONS(1659), + [anon_sym_goto] = ACTIONS(1659), + [anon_sym_DASH_DASH] = ACTIONS(1657), + [anon_sym_PLUS_PLUS] = ACTIONS(1657), + [anon_sym_sizeof] = ACTIONS(1659), + [anon_sym___alignof__] = ACTIONS(1659), + [anon_sym___alignof] = ACTIONS(1659), + [anon_sym__alignof] = ACTIONS(1659), + [anon_sym_alignof] = ACTIONS(1659), + [anon_sym__Alignof] = ACTIONS(1659), + [anon_sym_offsetof] = ACTIONS(1659), + [anon_sym__Generic] = ACTIONS(1659), + [anon_sym_asm] = ACTIONS(1659), + [anon_sym___asm__] = ACTIONS(1659), + [sym_number_literal] = ACTIONS(1657), + [anon_sym_L_SQUOTE] = ACTIONS(1657), + [anon_sym_u_SQUOTE] = ACTIONS(1657), + [anon_sym_U_SQUOTE] = ACTIONS(1657), + [anon_sym_u8_SQUOTE] = ACTIONS(1657), + [anon_sym_SQUOTE] = ACTIONS(1657), + [anon_sym_L_DQUOTE] = ACTIONS(1657), + [anon_sym_u_DQUOTE] = ACTIONS(1657), + [anon_sym_U_DQUOTE] = ACTIONS(1657), + [anon_sym_u8_DQUOTE] = ACTIONS(1657), + [anon_sym_DQUOTE] = ACTIONS(1657), + [sym_true] = ACTIONS(1659), + [sym_false] = ACTIONS(1659), + [anon_sym_NULL] = ACTIONS(1659), + [anon_sym_nullptr] = ACTIONS(1659), + [sym_comment] = ACTIONS(3), + }, + [411] = { [ts_builtin_sym_end] = ACTIONS(1266), [sym_identifier] = ACTIONS(1264), [aux_sym_preproc_include_token1] = ACTIONS(1264), @@ -56603,100 +56704,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1264), [sym_comment] = ACTIONS(3), }, - [411] = { - [ts_builtin_sym_end] = ACTIONS(1278), - [sym_identifier] = ACTIONS(1276), - [aux_sym_preproc_include_token1] = ACTIONS(1276), - [aux_sym_preproc_def_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), - [sym_preproc_directive] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym___extension__] = ACTIONS(1276), - [anon_sym_typedef] = ACTIONS(1276), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym___attribute__] = ACTIONS(1276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), - [anon_sym___declspec] = ACTIONS(1276), - [anon_sym___cdecl] = ACTIONS(1276), - [anon_sym___clrcall] = ACTIONS(1276), - [anon_sym___stdcall] = ACTIONS(1276), - [anon_sym___fastcall] = ACTIONS(1276), - [anon_sym___thiscall] = ACTIONS(1276), - [anon_sym___vectorcall] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_signed] = ACTIONS(1276), - [anon_sym_unsigned] = ACTIONS(1276), - [anon_sym_long] = ACTIONS(1276), - [anon_sym_short] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_auto] = ACTIONS(1276), - [anon_sym_register] = ACTIONS(1276), - [anon_sym_inline] = ACTIONS(1276), - [anon_sym___inline] = ACTIONS(1276), - [anon_sym___inline__] = ACTIONS(1276), - [anon_sym___forceinline] = ACTIONS(1276), - [anon_sym_thread_local] = ACTIONS(1276), - [anon_sym___thread] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_constexpr] = ACTIONS(1276), - [anon_sym_volatile] = ACTIONS(1276), - [anon_sym_restrict] = ACTIONS(1276), - [anon_sym___restrict__] = ACTIONS(1276), - [anon_sym__Atomic] = ACTIONS(1276), - [anon_sym__Noreturn] = ACTIONS(1276), - [anon_sym_noreturn] = ACTIONS(1276), - [sym_primitive_type] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_switch] = ACTIONS(1276), - [anon_sym_case] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_goto] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1278), - [anon_sym_PLUS_PLUS] = ACTIONS(1278), - [anon_sym_sizeof] = ACTIONS(1276), - [anon_sym___alignof__] = ACTIONS(1276), - [anon_sym___alignof] = ACTIONS(1276), - [anon_sym__alignof] = ACTIONS(1276), - [anon_sym_alignof] = ACTIONS(1276), - [anon_sym__Alignof] = ACTIONS(1276), - [anon_sym_offsetof] = ACTIONS(1276), - [anon_sym__Generic] = ACTIONS(1276), - [anon_sym_asm] = ACTIONS(1276), - [anon_sym___asm__] = ACTIONS(1276), - [sym_number_literal] = ACTIONS(1278), - [anon_sym_L_SQUOTE] = ACTIONS(1278), - [anon_sym_u_SQUOTE] = ACTIONS(1278), - [anon_sym_U_SQUOTE] = ACTIONS(1278), - [anon_sym_u8_SQUOTE] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [anon_sym_L_DQUOTE] = ACTIONS(1278), - [anon_sym_u_DQUOTE] = ACTIONS(1278), - [anon_sym_U_DQUOTE] = ACTIONS(1278), - [anon_sym_u8_DQUOTE] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_true] = ACTIONS(1276), - [sym_false] = ACTIONS(1276), - [anon_sym_NULL] = ACTIONS(1276), - [anon_sym_nullptr] = ACTIONS(1276), - [sym_comment] = ACTIONS(3), - }, [412] = { [ts_builtin_sym_end] = ACTIONS(1254), [sym_identifier] = ACTIONS(1252), @@ -56792,6 +56799,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [413] = { + [ts_builtin_sym_end] = ACTIONS(1278), + [sym_identifier] = ACTIONS(1276), + [aux_sym_preproc_include_token1] = ACTIONS(1276), + [aux_sym_preproc_def_token1] = ACTIONS(1276), + [aux_sym_preproc_if_token1] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), + [sym_preproc_directive] = ACTIONS(1276), + [anon_sym_LPAREN2] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1276), + [anon_sym_PLUS] = ACTIONS(1276), + [anon_sym_STAR] = ACTIONS(1278), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym___extension__] = ACTIONS(1276), + [anon_sym_typedef] = ACTIONS(1276), + [anon_sym_extern] = ACTIONS(1276), + [anon_sym___attribute__] = ACTIONS(1276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), + [anon_sym___declspec] = ACTIONS(1276), + [anon_sym___cdecl] = ACTIONS(1276), + [anon_sym___clrcall] = ACTIONS(1276), + [anon_sym___stdcall] = ACTIONS(1276), + [anon_sym___fastcall] = ACTIONS(1276), + [anon_sym___thiscall] = ACTIONS(1276), + [anon_sym___vectorcall] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(1278), + [anon_sym_signed] = ACTIONS(1276), + [anon_sym_unsigned] = ACTIONS(1276), + [anon_sym_long] = ACTIONS(1276), + [anon_sym_short] = ACTIONS(1276), + [anon_sym_static] = ACTIONS(1276), + [anon_sym_auto] = ACTIONS(1276), + [anon_sym_register] = ACTIONS(1276), + [anon_sym_inline] = ACTIONS(1276), + [anon_sym___inline] = ACTIONS(1276), + [anon_sym___inline__] = ACTIONS(1276), + [anon_sym___forceinline] = ACTIONS(1276), + [anon_sym_thread_local] = ACTIONS(1276), + [anon_sym___thread] = ACTIONS(1276), + [anon_sym_const] = ACTIONS(1276), + [anon_sym_constexpr] = ACTIONS(1276), + [anon_sym_volatile] = ACTIONS(1276), + [anon_sym_restrict] = ACTIONS(1276), + [anon_sym___restrict__] = ACTIONS(1276), + [anon_sym__Atomic] = ACTIONS(1276), + [anon_sym__Noreturn] = ACTIONS(1276), + [anon_sym_noreturn] = ACTIONS(1276), + [sym_primitive_type] = ACTIONS(1276), + [anon_sym_enum] = ACTIONS(1276), + [anon_sym_struct] = ACTIONS(1276), + [anon_sym_union] = ACTIONS(1276), + [anon_sym_if] = ACTIONS(1276), + [anon_sym_switch] = ACTIONS(1276), + [anon_sym_case] = ACTIONS(1276), + [anon_sym_default] = ACTIONS(1276), + [anon_sym_while] = ACTIONS(1276), + [anon_sym_do] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1276), + [anon_sym_return] = ACTIONS(1276), + [anon_sym_break] = ACTIONS(1276), + [anon_sym_continue] = ACTIONS(1276), + [anon_sym_goto] = ACTIONS(1276), + [anon_sym_DASH_DASH] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1278), + [anon_sym_sizeof] = ACTIONS(1276), + [anon_sym___alignof__] = ACTIONS(1276), + [anon_sym___alignof] = ACTIONS(1276), + [anon_sym__alignof] = ACTIONS(1276), + [anon_sym_alignof] = ACTIONS(1276), + [anon_sym__Alignof] = ACTIONS(1276), + [anon_sym_offsetof] = ACTIONS(1276), + [anon_sym__Generic] = ACTIONS(1276), + [anon_sym_asm] = ACTIONS(1276), + [anon_sym___asm__] = ACTIONS(1276), + [sym_number_literal] = ACTIONS(1278), + [anon_sym_L_SQUOTE] = ACTIONS(1278), + [anon_sym_u_SQUOTE] = ACTIONS(1278), + [anon_sym_U_SQUOTE] = ACTIONS(1278), + [anon_sym_u8_SQUOTE] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1278), + [anon_sym_L_DQUOTE] = ACTIONS(1278), + [anon_sym_u_DQUOTE] = ACTIONS(1278), + [anon_sym_U_DQUOTE] = ACTIONS(1278), + [anon_sym_u8_DQUOTE] = ACTIONS(1278), + [anon_sym_DQUOTE] = ACTIONS(1278), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [anon_sym_NULL] = ACTIONS(1276), + [anon_sym_nullptr] = ACTIONS(1276), + [sym_comment] = ACTIONS(3), + }, + [414] = { [ts_builtin_sym_end] = ACTIONS(1282), [sym_identifier] = ACTIONS(1280), [aux_sym_preproc_include_token1] = ACTIONS(1280), @@ -56885,7 +56986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1280), [sym_comment] = ACTIONS(3), }, - [414] = { + [415] = { [ts_builtin_sym_end] = ACTIONS(1270), [sym_identifier] = ACTIONS(1268), [aux_sym_preproc_include_token1] = ACTIONS(1268), @@ -56979,100 +57080,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1268), [sym_comment] = ACTIONS(3), }, - [415] = { - [ts_builtin_sym_end] = ACTIONS(1657), - [sym_identifier] = ACTIONS(1659), - [aux_sym_preproc_include_token1] = ACTIONS(1659), - [aux_sym_preproc_def_token1] = ACTIONS(1659), - [aux_sym_preproc_if_token1] = ACTIONS(1659), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1659), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1659), - [sym_preproc_directive] = ACTIONS(1659), - [anon_sym_LPAREN2] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(1659), - [anon_sym_STAR] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym___extension__] = ACTIONS(1659), - [anon_sym_typedef] = ACTIONS(1659), - [anon_sym_extern] = ACTIONS(1659), - [anon_sym___attribute__] = ACTIONS(1659), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1657), - [anon_sym___declspec] = ACTIONS(1659), - [anon_sym___cdecl] = ACTIONS(1659), - [anon_sym___clrcall] = ACTIONS(1659), - [anon_sym___stdcall] = ACTIONS(1659), - [anon_sym___fastcall] = ACTIONS(1659), - [anon_sym___thiscall] = ACTIONS(1659), - [anon_sym___vectorcall] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1657), - [anon_sym_signed] = ACTIONS(1659), - [anon_sym_unsigned] = ACTIONS(1659), - [anon_sym_long] = ACTIONS(1659), - [anon_sym_short] = ACTIONS(1659), - [anon_sym_static] = ACTIONS(1659), - [anon_sym_auto] = ACTIONS(1659), - [anon_sym_register] = ACTIONS(1659), - [anon_sym_inline] = ACTIONS(1659), - [anon_sym___inline] = ACTIONS(1659), - [anon_sym___inline__] = ACTIONS(1659), - [anon_sym___forceinline] = ACTIONS(1659), - [anon_sym_thread_local] = ACTIONS(1659), - [anon_sym___thread] = ACTIONS(1659), - [anon_sym_const] = ACTIONS(1659), - [anon_sym_constexpr] = ACTIONS(1659), - [anon_sym_volatile] = ACTIONS(1659), - [anon_sym_restrict] = ACTIONS(1659), - [anon_sym___restrict__] = ACTIONS(1659), - [anon_sym__Atomic] = ACTIONS(1659), - [anon_sym__Noreturn] = ACTIONS(1659), - [anon_sym_noreturn] = ACTIONS(1659), - [sym_primitive_type] = ACTIONS(1659), - [anon_sym_enum] = ACTIONS(1659), - [anon_sym_struct] = ACTIONS(1659), - [anon_sym_union] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_switch] = ACTIONS(1659), - [anon_sym_case] = ACTIONS(1659), - [anon_sym_default] = ACTIONS(1659), - [anon_sym_while] = ACTIONS(1659), - [anon_sym_do] = ACTIONS(1659), - [anon_sym_for] = ACTIONS(1659), - [anon_sym_return] = ACTIONS(1659), - [anon_sym_break] = ACTIONS(1659), - [anon_sym_continue] = ACTIONS(1659), - [anon_sym_goto] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_sizeof] = ACTIONS(1659), - [anon_sym___alignof__] = ACTIONS(1659), - [anon_sym___alignof] = ACTIONS(1659), - [anon_sym__alignof] = ACTIONS(1659), - [anon_sym_alignof] = ACTIONS(1659), - [anon_sym__Alignof] = ACTIONS(1659), - [anon_sym_offsetof] = ACTIONS(1659), - [anon_sym__Generic] = ACTIONS(1659), - [anon_sym_asm] = ACTIONS(1659), - [anon_sym___asm__] = ACTIONS(1659), - [sym_number_literal] = ACTIONS(1657), - [anon_sym_L_SQUOTE] = ACTIONS(1657), - [anon_sym_u_SQUOTE] = ACTIONS(1657), - [anon_sym_U_SQUOTE] = ACTIONS(1657), - [anon_sym_u8_SQUOTE] = ACTIONS(1657), - [anon_sym_SQUOTE] = ACTIONS(1657), - [anon_sym_L_DQUOTE] = ACTIONS(1657), - [anon_sym_u_DQUOTE] = ACTIONS(1657), - [anon_sym_U_DQUOTE] = ACTIONS(1657), - [anon_sym_u8_DQUOTE] = ACTIONS(1657), - [anon_sym_DQUOTE] = ACTIONS(1657), - [sym_true] = ACTIONS(1659), - [sym_false] = ACTIONS(1659), - [anon_sym_NULL] = ACTIONS(1659), - [anon_sym_nullptr] = ACTIONS(1659), - [sym_comment] = ACTIONS(3), - }, [416] = { [ts_builtin_sym_end] = ACTIONS(1661), [sym_identifier] = ACTIONS(1663), @@ -57450,6 +57457,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [420] = { + [ts_builtin_sym_end] = ACTIONS(1258), + [sym_identifier] = ACTIONS(1256), + [aux_sym_preproc_include_token1] = ACTIONS(1256), + [aux_sym_preproc_def_token1] = ACTIONS(1256), + [aux_sym_preproc_if_token1] = ACTIONS(1256), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1256), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1256), + [sym_preproc_directive] = ACTIONS(1256), + [anon_sym_LPAREN2] = ACTIONS(1258), + [anon_sym_BANG] = ACTIONS(1258), + [anon_sym_TILDE] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym___extension__] = ACTIONS(1256), + [anon_sym_typedef] = ACTIONS(1256), + [anon_sym_extern] = ACTIONS(1256), + [anon_sym___attribute__] = ACTIONS(1256), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1258), + [anon_sym___declspec] = ACTIONS(1256), + [anon_sym___cdecl] = ACTIONS(1256), + [anon_sym___clrcall] = ACTIONS(1256), + [anon_sym___stdcall] = ACTIONS(1256), + [anon_sym___fastcall] = ACTIONS(1256), + [anon_sym___thiscall] = ACTIONS(1256), + [anon_sym___vectorcall] = ACTIONS(1256), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_long] = ACTIONS(1256), + [anon_sym_short] = ACTIONS(1256), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_auto] = ACTIONS(1256), + [anon_sym_register] = ACTIONS(1256), + [anon_sym_inline] = ACTIONS(1256), + [anon_sym___inline] = ACTIONS(1256), + [anon_sym___inline__] = ACTIONS(1256), + [anon_sym___forceinline] = ACTIONS(1256), + [anon_sym_thread_local] = ACTIONS(1256), + [anon_sym___thread] = ACTIONS(1256), + [anon_sym_const] = ACTIONS(1256), + [anon_sym_constexpr] = ACTIONS(1256), + [anon_sym_volatile] = ACTIONS(1256), + [anon_sym_restrict] = ACTIONS(1256), + [anon_sym___restrict__] = ACTIONS(1256), + [anon_sym__Atomic] = ACTIONS(1256), + [anon_sym__Noreturn] = ACTIONS(1256), + [anon_sym_noreturn] = ACTIONS(1256), + [sym_primitive_type] = ACTIONS(1256), + [anon_sym_enum] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_union] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_switch] = ACTIONS(1256), + [anon_sym_case] = ACTIONS(1256), + [anon_sym_default] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_do] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_goto] = ACTIONS(1256), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_sizeof] = ACTIONS(1256), + [anon_sym___alignof__] = ACTIONS(1256), + [anon_sym___alignof] = ACTIONS(1256), + [anon_sym__alignof] = ACTIONS(1256), + [anon_sym_alignof] = ACTIONS(1256), + [anon_sym__Alignof] = ACTIONS(1256), + [anon_sym_offsetof] = ACTIONS(1256), + [anon_sym__Generic] = ACTIONS(1256), + [anon_sym_asm] = ACTIONS(1256), + [anon_sym___asm__] = ACTIONS(1256), + [sym_number_literal] = ACTIONS(1258), + [anon_sym_L_SQUOTE] = ACTIONS(1258), + [anon_sym_u_SQUOTE] = ACTIONS(1258), + [anon_sym_U_SQUOTE] = ACTIONS(1258), + [anon_sym_u8_SQUOTE] = ACTIONS(1258), + [anon_sym_SQUOTE] = ACTIONS(1258), + [anon_sym_L_DQUOTE] = ACTIONS(1258), + [anon_sym_u_DQUOTE] = ACTIONS(1258), + [anon_sym_U_DQUOTE] = ACTIONS(1258), + [anon_sym_u8_DQUOTE] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1258), + [sym_true] = ACTIONS(1256), + [sym_false] = ACTIONS(1256), + [anon_sym_NULL] = ACTIONS(1256), + [anon_sym_nullptr] = ACTIONS(1256), + [sym_comment] = ACTIONS(3), + }, + [421] = { [ts_builtin_sym_end] = ACTIONS(1310), [sym_identifier] = ACTIONS(1308), [aux_sym_preproc_include_token1] = ACTIONS(1308), @@ -57543,100 +57644,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1308), [sym_comment] = ACTIONS(3), }, - [421] = { - [ts_builtin_sym_end] = ACTIONS(1334), - [sym_identifier] = ACTIONS(1332), - [aux_sym_preproc_include_token1] = ACTIONS(1332), - [aux_sym_preproc_def_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), - [sym_preproc_directive] = ACTIONS(1332), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym___extension__] = ACTIONS(1332), - [anon_sym_typedef] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym___attribute__] = ACTIONS(1332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1332), - [anon_sym___cdecl] = ACTIONS(1332), - [anon_sym___clrcall] = ACTIONS(1332), - [anon_sym___stdcall] = ACTIONS(1332), - [anon_sym___fastcall] = ACTIONS(1332), - [anon_sym___thiscall] = ACTIONS(1332), - [anon_sym___vectorcall] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_auto] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym___inline] = ACTIONS(1332), - [anon_sym___inline__] = ACTIONS(1332), - [anon_sym___forceinline] = ACTIONS(1332), - [anon_sym_thread_local] = ACTIONS(1332), - [anon_sym___thread] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_constexpr] = ACTIONS(1332), - [anon_sym_volatile] = ACTIONS(1332), - [anon_sym_restrict] = ACTIONS(1332), - [anon_sym___restrict__] = ACTIONS(1332), - [anon_sym__Atomic] = ACTIONS(1332), - [anon_sym__Noreturn] = ACTIONS(1332), - [anon_sym_noreturn] = ACTIONS(1332), - [sym_primitive_type] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_case] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_goto] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1332), - [anon_sym___alignof__] = ACTIONS(1332), - [anon_sym___alignof] = ACTIONS(1332), - [anon_sym__alignof] = ACTIONS(1332), - [anon_sym_alignof] = ACTIONS(1332), - [anon_sym__Alignof] = ACTIONS(1332), - [anon_sym_offsetof] = ACTIONS(1332), - [anon_sym__Generic] = ACTIONS(1332), - [anon_sym_asm] = ACTIONS(1332), - [anon_sym___asm__] = ACTIONS(1332), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [anon_sym_NULL] = ACTIONS(1332), - [anon_sym_nullptr] = ACTIONS(1332), - [sym_comment] = ACTIONS(3), - }, [422] = { [ts_builtin_sym_end] = ACTIONS(1298), [sym_identifier] = ACTIONS(1296), @@ -57732,97 +57739,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [423] = { - [ts_builtin_sym_end] = ACTIONS(1258), - [sym_identifier] = ACTIONS(1256), - [aux_sym_preproc_include_token1] = ACTIONS(1256), - [aux_sym_preproc_def_token1] = ACTIONS(1256), - [aux_sym_preproc_if_token1] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1256), - [sym_preproc_directive] = ACTIONS(1256), - [anon_sym_LPAREN2] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(1258), - [anon_sym_TILDE] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym___extension__] = ACTIONS(1256), - [anon_sym_typedef] = ACTIONS(1256), - [anon_sym_extern] = ACTIONS(1256), - [anon_sym___attribute__] = ACTIONS(1256), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1258), - [anon_sym___declspec] = ACTIONS(1256), - [anon_sym___cdecl] = ACTIONS(1256), - [anon_sym___clrcall] = ACTIONS(1256), - [anon_sym___stdcall] = ACTIONS(1256), - [anon_sym___fastcall] = ACTIONS(1256), - [anon_sym___thiscall] = ACTIONS(1256), - [anon_sym___vectorcall] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_signed] = ACTIONS(1256), - [anon_sym_unsigned] = ACTIONS(1256), - [anon_sym_long] = ACTIONS(1256), - [anon_sym_short] = ACTIONS(1256), - [anon_sym_static] = ACTIONS(1256), - [anon_sym_auto] = ACTIONS(1256), - [anon_sym_register] = ACTIONS(1256), - [anon_sym_inline] = ACTIONS(1256), - [anon_sym___inline] = ACTIONS(1256), - [anon_sym___inline__] = ACTIONS(1256), - [anon_sym___forceinline] = ACTIONS(1256), - [anon_sym_thread_local] = ACTIONS(1256), - [anon_sym___thread] = ACTIONS(1256), - [anon_sym_const] = ACTIONS(1256), - [anon_sym_constexpr] = ACTIONS(1256), - [anon_sym_volatile] = ACTIONS(1256), - [anon_sym_restrict] = ACTIONS(1256), - [anon_sym___restrict__] = ACTIONS(1256), - [anon_sym__Atomic] = ACTIONS(1256), - [anon_sym__Noreturn] = ACTIONS(1256), - [anon_sym_noreturn] = ACTIONS(1256), - [sym_primitive_type] = ACTIONS(1256), - [anon_sym_enum] = ACTIONS(1256), - [anon_sym_struct] = ACTIONS(1256), - [anon_sym_union] = ACTIONS(1256), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_switch] = ACTIONS(1256), - [anon_sym_case] = ACTIONS(1256), - [anon_sym_default] = ACTIONS(1256), - [anon_sym_while] = ACTIONS(1256), - [anon_sym_do] = ACTIONS(1256), - [anon_sym_for] = ACTIONS(1256), - [anon_sym_return] = ACTIONS(1256), - [anon_sym_break] = ACTIONS(1256), - [anon_sym_continue] = ACTIONS(1256), - [anon_sym_goto] = ACTIONS(1256), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_sizeof] = ACTIONS(1256), - [anon_sym___alignof__] = ACTIONS(1256), - [anon_sym___alignof] = ACTIONS(1256), - [anon_sym__alignof] = ACTIONS(1256), - [anon_sym_alignof] = ACTIONS(1256), - [anon_sym__Alignof] = ACTIONS(1256), - [anon_sym_offsetof] = ACTIONS(1256), - [anon_sym__Generic] = ACTIONS(1256), - [anon_sym_asm] = ACTIONS(1256), - [anon_sym___asm__] = ACTIONS(1256), - [sym_number_literal] = ACTIONS(1258), - [anon_sym_L_SQUOTE] = ACTIONS(1258), - [anon_sym_u_SQUOTE] = ACTIONS(1258), - [anon_sym_U_SQUOTE] = ACTIONS(1258), - [anon_sym_u8_SQUOTE] = ACTIONS(1258), - [anon_sym_SQUOTE] = ACTIONS(1258), - [anon_sym_L_DQUOTE] = ACTIONS(1258), - [anon_sym_u_DQUOTE] = ACTIONS(1258), - [anon_sym_U_DQUOTE] = ACTIONS(1258), - [anon_sym_u8_DQUOTE] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_true] = ACTIONS(1256), - [sym_false] = ACTIONS(1256), - [anon_sym_NULL] = ACTIONS(1256), - [anon_sym_nullptr] = ACTIONS(1256), + [ts_builtin_sym_end] = ACTIONS(1334), + [sym_identifier] = ACTIONS(1332), + [aux_sym_preproc_include_token1] = ACTIONS(1332), + [aux_sym_preproc_def_token1] = ACTIONS(1332), + [aux_sym_preproc_if_token1] = ACTIONS(1332), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), + [sym_preproc_directive] = ACTIONS(1332), + [anon_sym_LPAREN2] = ACTIONS(1334), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_TILDE] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym___extension__] = ACTIONS(1332), + [anon_sym_typedef] = ACTIONS(1332), + [anon_sym_extern] = ACTIONS(1332), + [anon_sym___attribute__] = ACTIONS(1332), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), + [anon_sym___declspec] = ACTIONS(1332), + [anon_sym___cdecl] = ACTIONS(1332), + [anon_sym___clrcall] = ACTIONS(1332), + [anon_sym___stdcall] = ACTIONS(1332), + [anon_sym___fastcall] = ACTIONS(1332), + [anon_sym___thiscall] = ACTIONS(1332), + [anon_sym___vectorcall] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_signed] = ACTIONS(1332), + [anon_sym_unsigned] = ACTIONS(1332), + [anon_sym_long] = ACTIONS(1332), + [anon_sym_short] = ACTIONS(1332), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_auto] = ACTIONS(1332), + [anon_sym_register] = ACTIONS(1332), + [anon_sym_inline] = ACTIONS(1332), + [anon_sym___inline] = ACTIONS(1332), + [anon_sym___inline__] = ACTIONS(1332), + [anon_sym___forceinline] = ACTIONS(1332), + [anon_sym_thread_local] = ACTIONS(1332), + [anon_sym___thread] = ACTIONS(1332), + [anon_sym_const] = ACTIONS(1332), + [anon_sym_constexpr] = ACTIONS(1332), + [anon_sym_volatile] = ACTIONS(1332), + [anon_sym_restrict] = ACTIONS(1332), + [anon_sym___restrict__] = ACTIONS(1332), + [anon_sym__Atomic] = ACTIONS(1332), + [anon_sym__Noreturn] = ACTIONS(1332), + [anon_sym_noreturn] = ACTIONS(1332), + [sym_primitive_type] = ACTIONS(1332), + [anon_sym_enum] = ACTIONS(1332), + [anon_sym_struct] = ACTIONS(1332), + [anon_sym_union] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(1332), + [anon_sym_switch] = ACTIONS(1332), + [anon_sym_case] = ACTIONS(1332), + [anon_sym_default] = ACTIONS(1332), + [anon_sym_while] = ACTIONS(1332), + [anon_sym_do] = ACTIONS(1332), + [anon_sym_for] = ACTIONS(1332), + [anon_sym_return] = ACTIONS(1332), + [anon_sym_break] = ACTIONS(1332), + [anon_sym_continue] = ACTIONS(1332), + [anon_sym_goto] = ACTIONS(1332), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_sizeof] = ACTIONS(1332), + [anon_sym___alignof__] = ACTIONS(1332), + [anon_sym___alignof] = ACTIONS(1332), + [anon_sym__alignof] = ACTIONS(1332), + [anon_sym_alignof] = ACTIONS(1332), + [anon_sym__Alignof] = ACTIONS(1332), + [anon_sym_offsetof] = ACTIONS(1332), + [anon_sym__Generic] = ACTIONS(1332), + [anon_sym_asm] = ACTIONS(1332), + [anon_sym___asm__] = ACTIONS(1332), + [sym_number_literal] = ACTIONS(1334), + [anon_sym_L_SQUOTE] = ACTIONS(1334), + [anon_sym_u_SQUOTE] = ACTIONS(1334), + [anon_sym_U_SQUOTE] = ACTIONS(1334), + [anon_sym_u8_SQUOTE] = ACTIONS(1334), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_L_DQUOTE] = ACTIONS(1334), + [anon_sym_u_DQUOTE] = ACTIONS(1334), + [anon_sym_U_DQUOTE] = ACTIONS(1334), + [anon_sym_u8_DQUOTE] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(1334), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [anon_sym_NULL] = ACTIONS(1332), + [anon_sym_nullptr] = ACTIONS(1332), [sym_comment] = ACTIONS(3), }, [424] = { @@ -58768,37 +58775,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [434] = { [sym_type_qualifier] = STATE(1102), [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__expression] = STATE(1071), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), [sym_type_descriptor] = STATE(1885), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), [aux_sym__type_definition_type_repeat1] = STATE(1102), [aux_sym_sized_type_specifier_repeat1] = STATE(1139), [sym_identifier] = ACTIONS(1665), @@ -58858,37 +58865,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [435] = { [sym_type_qualifier] = STATE(1102), [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__expression] = STATE(1071), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), [sym_type_descriptor] = STATE(1977), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), [aux_sym__type_definition_type_repeat1] = STATE(1102), [aux_sym_sized_type_specifier_repeat1] = STATE(1139), [sym_identifier] = ACTIONS(1665), @@ -58948,37 +58955,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [436] = { [sym_type_qualifier] = STATE(1102), [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__expression] = STATE(1071), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), [sym_type_descriptor] = STATE(1802), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), [aux_sym__type_definition_type_repeat1] = STATE(1102), [aux_sym_sized_type_specifier_repeat1] = STATE(1139), [sym_identifier] = ACTIONS(1665), @@ -59038,37 +59045,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [437] = { [sym_type_qualifier] = STATE(1102), [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__expression] = STATE(1071), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), [sym_type_descriptor] = STATE(1782), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), [aux_sym__type_definition_type_repeat1] = STATE(1102), [aux_sym_sized_type_specifier_repeat1] = STATE(1139), [sym_identifier] = ACTIONS(1665), @@ -59128,37 +59135,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [438] = { [sym_type_qualifier] = STATE(1102), [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__expression] = STATE(1071), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), [sym_type_descriptor] = STATE(1809), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), [aux_sym__type_definition_type_repeat1] = STATE(1102), [aux_sym_sized_type_specifier_repeat1] = STATE(1139), [sym_identifier] = ACTIONS(1665), @@ -59218,37 +59225,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [439] = { [sym_type_qualifier] = STATE(1102), [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__expression] = STATE(1071), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), [sym_type_descriptor] = STATE(1880), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), [aux_sym__type_definition_type_repeat1] = STATE(1102), [aux_sym_sized_type_specifier_repeat1] = STATE(1139), [sym_identifier] = ACTIONS(1665), @@ -59308,37 +59315,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [440] = { [sym_type_qualifier] = STATE(1102), [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__expression] = STATE(1071), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), [sym_type_descriptor] = STATE(1956), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), [aux_sym__type_definition_type_repeat1] = STATE(1102), [aux_sym_sized_type_specifier_repeat1] = STATE(1139), [sym_identifier] = ACTIONS(1665), @@ -59398,37 +59405,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [441] = { [sym_type_qualifier] = STATE(1102), [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__expression] = STATE(1071), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), [sym_type_descriptor] = STATE(1925), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), [aux_sym__type_definition_type_repeat1] = STATE(1102), [aux_sym_sized_type_specifier_repeat1] = STATE(1139), [sym_identifier] = ACTIONS(1665), @@ -59488,37 +59495,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [442] = { [sym_type_qualifier] = STATE(1102), [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__expression] = STATE(1071), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), [sym_type_descriptor] = STATE(1985), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), [aux_sym__type_definition_type_repeat1] = STATE(1102), [aux_sym_sized_type_specifier_repeat1] = STATE(1139), [sym_identifier] = ACTIONS(1665), @@ -59578,37 +59585,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [443] = { [sym_type_qualifier] = STATE(1102), [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__expression] = STATE(1071), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), [sym_type_descriptor] = STATE(1853), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), [aux_sym__type_definition_type_repeat1] = STATE(1102), [aux_sym_sized_type_specifier_repeat1] = STATE(1139), [sym_identifier] = ACTIONS(1665), @@ -59668,37 +59675,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [444] = { [sym_type_qualifier] = STATE(1102), [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__expression] = STATE(1071), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), [sym_type_descriptor] = STATE(1887), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), [aux_sym__type_definition_type_repeat1] = STATE(1102), [aux_sym_sized_type_specifier_repeat1] = STATE(1139), [sym_identifier] = ACTIONS(1665), @@ -59758,37 +59765,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [445] = { [sym_type_qualifier] = STATE(1102), [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__expression] = STATE(1071), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), [sym_type_descriptor] = STATE(1946), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [sym_macro_type_specifier] = STATE(821), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [sym_macro_type_specifier] = STATE(825), [aux_sym__type_definition_type_repeat1] = STATE(1102), [aux_sym_sized_type_specifier_repeat1] = STATE(1139), [sym_identifier] = ACTIONS(1665), @@ -59868,8 +59875,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_long] = ACTIONS(1671), [anon_sym_short] = ACTIONS(1671), [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_EQ] = ACTIONS(1673), [anon_sym_static] = ACTIONS(1671), + [anon_sym_EQ] = ACTIONS(1673), [anon_sym_auto] = ACTIONS(1671), [anon_sym_register] = ACTIONS(1671), [anon_sym_inline] = ACTIONS(1671), @@ -59956,8 +59963,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_long] = ACTIONS(1675), [anon_sym_short] = ACTIONS(1675), [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_EQ] = ACTIONS(1677), [anon_sym_static] = ACTIONS(1675), + [anon_sym_EQ] = ACTIONS(1677), [anon_sym_auto] = ACTIONS(1675), [anon_sym_register] = ACTIONS(1675), [anon_sym_inline] = ACTIONS(1675), @@ -60022,31 +60029,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [448] = { - [sym__expression] = STATE(722), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), - [sym_initializer_list] = STATE(714), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym__expression] = STATE(733), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), + [sym_initializer_list] = STATE(713), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym_identifier] = ACTIONS(1679), [anon_sym_COMMA] = ACTIONS(1352), [anon_sym_RPAREN] = ACTIONS(1352), @@ -60110,31 +60117,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [449] = { - [sym__expression] = STATE(722), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(799), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(799), - [sym_call_expression] = STATE(799), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(799), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(799), - [sym_initializer_list] = STATE(714), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(735), - [sym_null] = STATE(700), + [sym__expression] = STATE(733), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(801), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(801), + [sym_call_expression] = STATE(801), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(801), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(801), + [sym_initializer_list] = STATE(713), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(708), [sym_identifier] = ACTIONS(1350), [anon_sym_COMMA] = ACTIONS(1352), [aux_sym_preproc_if_token2] = ACTIONS(1352), @@ -60198,31 +60205,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [450] = { - [sym__expression] = STATE(869), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(895), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(895), - [sym_call_expression] = STATE(895), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(895), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(895), - [sym_initializer_list] = STATE(714), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), + [sym__expression] = STATE(881), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(894), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(894), + [sym_call_expression] = STATE(894), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(894), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(894), + [sym_initializer_list] = STATE(713), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), [sym_identifier] = ACTIONS(1687), [anon_sym_DOT_DOT_DOT] = ACTIONS(1352), [anon_sym_LPAREN2] = ACTIONS(1352), @@ -60366,8 +60373,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [452] = { - [sym_string_literal] = STATE(662), - [aux_sym_sized_type_specifier_repeat1] = STATE(811), + [sym_string_literal] = STATE(664), + [aux_sym_sized_type_specifier_repeat1] = STATE(810), [sym_identifier] = ACTIONS(1697), [anon_sym_COMMA] = ACTIONS(1699), [anon_sym_LPAREN2] = ACTIONS(1701), @@ -60407,8 +60414,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_long] = ACTIONS(1712), [anon_sym_short] = ACTIONS(1712), [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_EQ] = ACTIONS(1714), [anon_sym_static] = ACTIONS(1697), + [anon_sym_EQ] = ACTIONS(1714), [anon_sym_auto] = ACTIONS(1697), [anon_sym_register] = ACTIONS(1697), [anon_sym_inline] = ACTIONS(1697), @@ -60449,8 +60456,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [453] = { - [sym_string_literal] = STATE(662), - [aux_sym_sized_type_specifier_repeat1] = STATE(811), + [sym_string_literal] = STATE(664), + [aux_sym_sized_type_specifier_repeat1] = STATE(810), [sym_identifier] = ACTIONS(1697), [anon_sym_COMMA] = ACTIONS(1699), [anon_sym_LPAREN2] = ACTIONS(1701), @@ -60490,8 +60497,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_long] = ACTIONS(1712), [anon_sym_short] = ACTIONS(1712), [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_EQ] = ACTIONS(1714), [anon_sym_static] = ACTIONS(1697), + [anon_sym_EQ] = ACTIONS(1714), [anon_sym_auto] = ACTIONS(1697), [anon_sym_register] = ACTIONS(1697), [anon_sym_inline] = ACTIONS(1697), @@ -60532,8 +60539,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [454] = { - [sym_string_literal] = STATE(662), - [aux_sym_sized_type_specifier_repeat1] = STATE(811), + [sym_string_literal] = STATE(664), + [aux_sym_sized_type_specifier_repeat1] = STATE(810), [sym_identifier] = ACTIONS(1697), [anon_sym_COMMA] = ACTIONS(1699), [anon_sym_LPAREN2] = ACTIONS(1701), @@ -60573,8 +60580,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_long] = ACTIONS(1712), [anon_sym_short] = ACTIONS(1712), [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_EQ] = ACTIONS(1714), [anon_sym_static] = ACTIONS(1697), + [anon_sym_EQ] = ACTIONS(1714), [anon_sym_auto] = ACTIONS(1697), [anon_sym_register] = ACTIONS(1697), [anon_sym_inline] = ACTIONS(1697), @@ -60615,8 +60622,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [455] = { - [sym_string_literal] = STATE(662), - [aux_sym_sized_type_specifier_repeat1] = STATE(811), + [sym_string_literal] = STATE(664), + [aux_sym_sized_type_specifier_repeat1] = STATE(810), [sym_identifier] = ACTIONS(1697), [anon_sym_COMMA] = ACTIONS(1699), [anon_sym_LPAREN2] = ACTIONS(1701), @@ -60656,8 +60663,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_long] = ACTIONS(1712), [anon_sym_short] = ACTIONS(1712), [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_EQ] = ACTIONS(1714), [anon_sym_static] = ACTIONS(1697), + [anon_sym_EQ] = ACTIONS(1714), [anon_sym_auto] = ACTIONS(1697), [anon_sym_register] = ACTIONS(1697), [anon_sym_inline] = ACTIONS(1697), @@ -60698,8 +60705,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [456] = { - [sym_string_literal] = STATE(662), - [aux_sym_sized_type_specifier_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(1727), + [anon_sym_LPAREN2] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1730), + [anon_sym_AMP] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym___extension__] = ACTIONS(1734), + [anon_sym_extern] = ACTIONS(1734), + [anon_sym___attribute__] = ACTIONS(1734), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1736), + [anon_sym___declspec] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_signed] = ACTIONS(1734), + [anon_sym_unsigned] = ACTIONS(1734), + [anon_sym_long] = ACTIONS(1734), + [anon_sym_short] = ACTIONS(1734), + [anon_sym_static] = ACTIONS(1734), + [anon_sym_auto] = ACTIONS(1734), + [anon_sym_register] = ACTIONS(1734), + [anon_sym_inline] = ACTIONS(1734), + [anon_sym___inline] = ACTIONS(1734), + [anon_sym___inline__] = ACTIONS(1734), + [anon_sym___forceinline] = ACTIONS(1734), + [anon_sym_thread_local] = ACTIONS(1734), + [anon_sym___thread] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_constexpr] = ACTIONS(1734), + [anon_sym_volatile] = ACTIONS(1734), + [anon_sym_restrict] = ACTIONS(1734), + [anon_sym___restrict__] = ACTIONS(1734), + [anon_sym__Atomic] = ACTIONS(1734), + [anon_sym__Noreturn] = ACTIONS(1734), + [anon_sym_noreturn] = ACTIONS(1734), + [sym_primitive_type] = ACTIONS(1734), + [anon_sym_enum] = ACTIONS(1734), + [anon_sym_struct] = ACTIONS(1734), + [anon_sym_union] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_switch] = ACTIONS(1732), + [anon_sym_case] = ACTIONS(1732), + [anon_sym_default] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_do] = ACTIONS(1732), + [anon_sym_for] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_goto] = ACTIONS(1732), + [anon_sym___try] = ACTIONS(1732), + [anon_sym___leave] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_sizeof] = ACTIONS(1732), + [anon_sym___alignof__] = ACTIONS(1732), + [anon_sym___alignof] = ACTIONS(1732), + [anon_sym__alignof] = ACTIONS(1732), + [anon_sym_alignof] = ACTIONS(1732), + [anon_sym__Alignof] = ACTIONS(1732), + [anon_sym_offsetof] = ACTIONS(1732), + [anon_sym__Generic] = ACTIONS(1732), + [anon_sym_asm] = ACTIONS(1732), + [anon_sym___asm__] = ACTIONS(1732), + [sym_number_literal] = ACTIONS(1730), + [anon_sym_L_SQUOTE] = ACTIONS(1730), + [anon_sym_u_SQUOTE] = ACTIONS(1730), + [anon_sym_U_SQUOTE] = ACTIONS(1730), + [anon_sym_u8_SQUOTE] = ACTIONS(1730), + [anon_sym_SQUOTE] = ACTIONS(1730), + [anon_sym_L_DQUOTE] = ACTIONS(1730), + [anon_sym_u_DQUOTE] = ACTIONS(1730), + [anon_sym_U_DQUOTE] = ACTIONS(1730), + [anon_sym_u8_DQUOTE] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1730), + [sym_true] = ACTIONS(1732), + [sym_false] = ACTIONS(1732), + [anon_sym_NULL] = ACTIONS(1732), + [anon_sym_nullptr] = ACTIONS(1732), + [sym_comment] = ACTIONS(3), + }, + [457] = { + [sym_string_literal] = STATE(664), + [aux_sym_sized_type_specifier_repeat1] = STATE(810), [sym_identifier] = ACTIONS(1697), [anon_sym_COMMA] = ACTIONS(1699), [anon_sym_LPAREN2] = ACTIONS(1701), @@ -60739,8 +60829,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_long] = ACTIONS(1712), [anon_sym_short] = ACTIONS(1712), [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_EQ] = ACTIONS(1714), [anon_sym_static] = ACTIONS(1697), + [anon_sym_EQ] = ACTIONS(1714), [anon_sym_auto] = ACTIONS(1697), [anon_sym_register] = ACTIONS(1697), [anon_sym_inline] = ACTIONS(1697), @@ -60757,7 +60847,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1697), [anon_sym__Noreturn] = ACTIONS(1697), [anon_sym_noreturn] = ACTIONS(1697), - [anon_sym_COLON] = ACTIONS(1727), + [anon_sym_COLON] = ACTIONS(1739), [anon_sym_QMARK] = ACTIONS(1699), [anon_sym_STAR_EQ] = ACTIONS(1718), [anon_sym_SLASH_EQ] = ACTIONS(1718), @@ -60780,9 +60870,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [457] = { - [sym_string_literal] = STATE(662), - [aux_sym_sized_type_specifier_repeat1] = STATE(811), + [458] = { + [sym_string_literal] = STATE(664), + [aux_sym_sized_type_specifier_repeat1] = STATE(810), [sym_identifier] = ACTIONS(1697), [anon_sym_COMMA] = ACTIONS(1699), [anon_sym_LPAREN2] = ACTIONS(1701), @@ -60822,8 +60912,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_long] = ACTIONS(1712), [anon_sym_short] = ACTIONS(1712), [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_EQ] = ACTIONS(1714), [anon_sym_static] = ACTIONS(1697), + [anon_sym_EQ] = ACTIONS(1714), [anon_sym_auto] = ACTIONS(1697), [anon_sym_register] = ACTIONS(1697), [anon_sym_inline] = ACTIONS(1697), @@ -60840,7 +60930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1697), [anon_sym__Noreturn] = ACTIONS(1697), [anon_sym_noreturn] = ACTIONS(1697), - [anon_sym_COLON] = ACTIONS(1727), + [anon_sym_COLON] = ACTIONS(1739), [anon_sym_QMARK] = ACTIONS(1699), [anon_sym_STAR_EQ] = ACTIONS(1718), [anon_sym_SLASH_EQ] = ACTIONS(1718), @@ -60863,92 +60953,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [458] = { - [sym_identifier] = ACTIONS(1729), - [anon_sym_LPAREN2] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_TILDE] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym___extension__] = ACTIONS(1736), - [anon_sym_extern] = ACTIONS(1736), - [anon_sym___attribute__] = ACTIONS(1736), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1736), - [anon_sym_LBRACE] = ACTIONS(1732), - [anon_sym_signed] = ACTIONS(1736), - [anon_sym_unsigned] = ACTIONS(1736), - [anon_sym_long] = ACTIONS(1736), - [anon_sym_short] = ACTIONS(1736), - [anon_sym_static] = ACTIONS(1736), - [anon_sym_auto] = ACTIONS(1736), - [anon_sym_register] = ACTIONS(1736), - [anon_sym_inline] = ACTIONS(1736), - [anon_sym___inline] = ACTIONS(1736), - [anon_sym___inline__] = ACTIONS(1736), - [anon_sym___forceinline] = ACTIONS(1736), - [anon_sym_thread_local] = ACTIONS(1736), - [anon_sym___thread] = ACTIONS(1736), - [anon_sym_const] = ACTIONS(1736), - [anon_sym_constexpr] = ACTIONS(1736), - [anon_sym_volatile] = ACTIONS(1736), - [anon_sym_restrict] = ACTIONS(1736), - [anon_sym___restrict__] = ACTIONS(1736), - [anon_sym__Atomic] = ACTIONS(1736), - [anon_sym__Noreturn] = ACTIONS(1736), - [anon_sym_noreturn] = ACTIONS(1736), - [sym_primitive_type] = ACTIONS(1736), - [anon_sym_enum] = ACTIONS(1736), - [anon_sym_struct] = ACTIONS(1736), - [anon_sym_union] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_switch] = ACTIONS(1734), - [anon_sym_case] = ACTIONS(1734), - [anon_sym_default] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_do] = ACTIONS(1734), - [anon_sym_for] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_goto] = ACTIONS(1734), - [anon_sym___try] = ACTIONS(1734), - [anon_sym___leave] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1732), - [anon_sym_sizeof] = ACTIONS(1734), - [anon_sym___alignof__] = ACTIONS(1734), - [anon_sym___alignof] = ACTIONS(1734), - [anon_sym__alignof] = ACTIONS(1734), - [anon_sym_alignof] = ACTIONS(1734), - [anon_sym__Alignof] = ACTIONS(1734), - [anon_sym_offsetof] = ACTIONS(1734), - [anon_sym__Generic] = ACTIONS(1734), - [anon_sym_asm] = ACTIONS(1734), - [anon_sym___asm__] = ACTIONS(1734), - [sym_number_literal] = ACTIONS(1732), - [anon_sym_L_SQUOTE] = ACTIONS(1732), - [anon_sym_u_SQUOTE] = ACTIONS(1732), - [anon_sym_U_SQUOTE] = ACTIONS(1732), - [anon_sym_u8_SQUOTE] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1732), - [anon_sym_L_DQUOTE] = ACTIONS(1732), - [anon_sym_u_DQUOTE] = ACTIONS(1732), - [anon_sym_U_DQUOTE] = ACTIONS(1732), - [anon_sym_u8_DQUOTE] = ACTIONS(1732), - [anon_sym_DQUOTE] = ACTIONS(1732), - [sym_true] = ACTIONS(1734), - [sym_false] = ACTIONS(1734), - [anon_sym_NULL] = ACTIONS(1734), - [anon_sym_nullptr] = ACTIONS(1734), - [sym_comment] = ACTIONS(3), - }, [459] = { - [sym_string_literal] = STATE(662), - [aux_sym_sized_type_specifier_repeat1] = STATE(811), + [sym_string_literal] = STATE(664), + [aux_sym_sized_type_specifier_repeat1] = STATE(810), [sym_identifier] = ACTIONS(1697), [anon_sym_COMMA] = ACTIONS(1699), [anon_sym_LPAREN2] = ACTIONS(1701), @@ -60988,8 +60995,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_long] = ACTIONS(1712), [anon_sym_short] = ACTIONS(1712), [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_EQ] = ACTIONS(1714), [anon_sym_static] = ACTIONS(1697), + [anon_sym_EQ] = ACTIONS(1714), [anon_sym_auto] = ACTIONS(1697), [anon_sym_register] = ACTIONS(1697), [anon_sym_inline] = ACTIONS(1697), @@ -61030,8 +61037,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [460] = { - [sym_string_literal] = STATE(662), - [aux_sym_sized_type_specifier_repeat1] = STATE(811), + [sym_string_literal] = STATE(664), + [aux_sym_sized_type_specifier_repeat1] = STATE(810), [sym_identifier] = ACTIONS(1697), [anon_sym_COMMA] = ACTIONS(1699), [anon_sym_LPAREN2] = ACTIONS(1701), @@ -61071,8 +61078,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_long] = ACTIONS(1712), [anon_sym_short] = ACTIONS(1712), [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_EQ] = ACTIONS(1714), [anon_sym_static] = ACTIONS(1697), + [anon_sym_EQ] = ACTIONS(1714), [anon_sym_auto] = ACTIONS(1697), [anon_sym_register] = ACTIONS(1697), [anon_sym_inline] = ACTIONS(1697), @@ -61113,8 +61120,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [461] = { - [sym_string_literal] = STATE(662), - [aux_sym_sized_type_specifier_repeat1] = STATE(811), + [sym_string_literal] = STATE(664), + [aux_sym_sized_type_specifier_repeat1] = STATE(810), [sym_identifier] = ACTIONS(1697), [anon_sym_COMMA] = ACTIONS(1699), [anon_sym_LPAREN2] = ACTIONS(1701), @@ -61154,8 +61161,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_long] = ACTIONS(1712), [anon_sym_short] = ACTIONS(1712), [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_EQ] = ACTIONS(1714), [anon_sym_static] = ACTIONS(1697), + [anon_sym_EQ] = ACTIONS(1714), [anon_sym_auto] = ACTIONS(1697), [anon_sym_register] = ACTIONS(1697), [anon_sym_inline] = ACTIONS(1697), @@ -61195,8 +61202,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [462] = { - [sym_string_literal] = STATE(662), - [aux_sym_sized_type_specifier_repeat1] = STATE(811), + [sym_string_literal] = STATE(664), + [aux_sym_sized_type_specifier_repeat1] = STATE(810), [sym_identifier] = ACTIONS(1697), [anon_sym_LPAREN2] = ACTIONS(1701), [anon_sym_DASH] = ACTIONS(1705), @@ -61235,8 +61242,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_long] = ACTIONS(1712), [anon_sym_short] = ACTIONS(1712), [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_EQ] = ACTIONS(1714), [anon_sym_static] = ACTIONS(1697), + [anon_sym_EQ] = ACTIONS(1714), [anon_sym_auto] = ACTIONS(1697), [anon_sym_register] = ACTIONS(1697), [anon_sym_inline] = ACTIONS(1697), @@ -61277,36 +61284,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [463] = { - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1184), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(750), + [sym_ms_declspec_modifier] = STATE(750), [sym_ms_based_modifier] = STATE(1803), [sym_ms_call_modifier] = STATE(1275), [sym__declarator] = STATE(1421), [sym__abstract_declarator] = STATE(1523), [sym_parenthesized_declarator] = STATE(1354), - [sym_abstract_parenthesized_declarator] = STATE(1496), + [sym_abstract_parenthesized_declarator] = STATE(1487), [sym_attributed_declarator] = STATE(1354), [sym_pointer_declarator] = STATE(1354), - [sym_abstract_pointer_declarator] = STATE(1496), + [sym_abstract_pointer_declarator] = STATE(1487), [sym_function_declarator] = STATE(1354), - [sym_abstract_function_declarator] = STATE(1496), + [sym_abstract_function_declarator] = STATE(1487), [sym_array_declarator] = STATE(1354), - [sym_abstract_array_declarator] = STATE(1496), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_abstract_array_declarator] = STATE(1487), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_variadic_parameter] = STATE(1670), - [sym_parameter_list] = STATE(1486), + [sym_parameter_list] = STATE(1488), [sym_parameter_declaration] = STATE(1670), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_sized_type_specifier_repeat1] = STATE(843), [sym_identifier] = ACTIONS(1743), [anon_sym_DOT_DOT_DOT] = ACTIONS(1745), @@ -61355,31 +61362,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [464] = { [sym_type_qualifier] = STATE(739), - [sym__expression] = STATE(1095), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(895), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(895), - [sym_call_expression] = STATE(895), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(895), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(895), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym__type_definition_type_repeat1] = STATE(739), + [sym__expression] = STATE(1092), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(894), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(894), + [sym_call_expression] = STATE(894), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(894), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(894), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [aux_sym_array_declarator_repeat1] = STATE(739), [sym_identifier] = ACTIONS(1687), [anon_sym_LPAREN2] = ACTIONS(1757), [anon_sym_BANG] = ACTIONS(1691), @@ -61389,7 +61396,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1759), [anon_sym_AMP] = ACTIONS(1761), [anon_sym___extension__] = ACTIONS(1763), - [anon_sym_RBRACK] = ACTIONS(1765), + [anon_sym_static] = ACTIONS(1765), + [anon_sym_RBRACK] = ACTIONS(1767), [anon_sym_const] = ACTIONS(1763), [anon_sym_constexpr] = ACTIONS(1763), [anon_sym_volatile] = ACTIONS(1763), @@ -61398,8 +61406,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1763), [anon_sym__Noreturn] = ACTIONS(1763), [anon_sym_noreturn] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1769), [anon_sym_sizeof] = ACTIONS(1693), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), @@ -61428,42 +61436,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [465] = { - [sym_type_qualifier] = STATE(464), - [sym__expression] = STATE(1104), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(895), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(895), - [sym_call_expression] = STATE(895), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(895), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(895), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym__type_definition_type_repeat1] = STATE(464), + [sym_type_qualifier] = STATE(469), + [sym__expression] = STATE(1113), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(894), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(894), + [sym_call_expression] = STATE(894), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(894), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(894), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [aux_sym_array_declarator_repeat1] = STATE(469), [sym_identifier] = ACTIONS(1687), [anon_sym_LPAREN2] = ACTIONS(1757), [anon_sym_BANG] = ACTIONS(1691), [anon_sym_TILDE] = ACTIONS(1691), [anon_sym_DASH] = ACTIONS(1689), [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1771), [anon_sym_AMP] = ACTIONS(1761), [anon_sym___extension__] = ACTIONS(1763), - [anon_sym_RBRACK] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1773), + [anon_sym_RBRACK] = ACTIONS(1775), [anon_sym_const] = ACTIONS(1763), [anon_sym_constexpr] = ACTIONS(1763), [anon_sym_volatile] = ACTIONS(1763), @@ -61472,8 +61481,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1763), [anon_sym__Noreturn] = ACTIONS(1763), [anon_sym_noreturn] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1769), [anon_sym_sizeof] = ACTIONS(1693), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), @@ -61503,41 +61512,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [466] = { [sym_type_qualifier] = STATE(739), - [sym__expression] = STATE(1114), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(895), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(895), - [sym_call_expression] = STATE(895), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(895), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(895), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym__type_definition_type_repeat1] = STATE(739), + [sym__expression] = STATE(1086), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(894), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(894), + [sym_call_expression] = STATE(894), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(894), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(894), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [aux_sym_array_declarator_repeat1] = STATE(739), [sym_identifier] = ACTIONS(1687), [anon_sym_LPAREN2] = ACTIONS(1757), [anon_sym_BANG] = ACTIONS(1691), [anon_sym_TILDE] = ACTIONS(1691), [anon_sym_DASH] = ACTIONS(1689), [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1773), + [anon_sym_STAR] = ACTIONS(1777), [anon_sym_AMP] = ACTIONS(1761), [anon_sym___extension__] = ACTIONS(1763), - [anon_sym_RBRACK] = ACTIONS(1775), + [anon_sym_static] = ACTIONS(1765), + [anon_sym_RBRACK] = ACTIONS(1779), [anon_sym_const] = ACTIONS(1763), [anon_sym_constexpr] = ACTIONS(1763), [anon_sym_volatile] = ACTIONS(1763), @@ -61546,8 +61556,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1763), [anon_sym__Noreturn] = ACTIONS(1763), [anon_sym_noreturn] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1769), [anon_sym_sizeof] = ACTIONS(1693), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), @@ -61578,40 +61588,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [467] = { [sym_type_qualifier] = STATE(739), [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(895), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(895), - [sym_call_expression] = STATE(895), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(895), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(895), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym__type_definition_type_repeat1] = STATE(739), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(894), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(894), + [sym_call_expression] = STATE(894), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(894), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(894), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [aux_sym_array_declarator_repeat1] = STATE(739), [sym_identifier] = ACTIONS(1687), [anon_sym_LPAREN2] = ACTIONS(1757), [anon_sym_BANG] = ACTIONS(1691), [anon_sym_TILDE] = ACTIONS(1691), [anon_sym_DASH] = ACTIONS(1689), [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_STAR] = ACTIONS(1781), [anon_sym_AMP] = ACTIONS(1761), [anon_sym___extension__] = ACTIONS(1763), - [anon_sym_RBRACK] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1765), + [anon_sym_RBRACK] = ACTIONS(1783), [anon_sym_const] = ACTIONS(1763), [anon_sym_constexpr] = ACTIONS(1763), [anon_sym_volatile] = ACTIONS(1763), @@ -61620,8 +61631,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1763), [anon_sym__Noreturn] = ACTIONS(1763), [anon_sym_noreturn] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1769), [anon_sym_sizeof] = ACTIONS(1693), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), @@ -61651,41 +61662,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [468] = { [sym_type_qualifier] = STATE(466), - [sym__expression] = STATE(1091), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(895), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(895), - [sym_call_expression] = STATE(895), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(895), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(895), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym__type_definition_type_repeat1] = STATE(466), + [sym__expression] = STATE(1101), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(894), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(894), + [sym_call_expression] = STATE(894), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(894), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(894), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [aux_sym_array_declarator_repeat1] = STATE(466), [sym_identifier] = ACTIONS(1687), [anon_sym_LPAREN2] = ACTIONS(1757), [anon_sym_BANG] = ACTIONS(1691), [anon_sym_TILDE] = ACTIONS(1691), [anon_sym_DASH] = ACTIONS(1689), [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1785), [anon_sym_AMP] = ACTIONS(1761), [anon_sym___extension__] = ACTIONS(1763), - [anon_sym_RBRACK] = ACTIONS(1783), + [anon_sym_static] = ACTIONS(1787), + [anon_sym_RBRACK] = ACTIONS(1789), [anon_sym_const] = ACTIONS(1763), [anon_sym_constexpr] = ACTIONS(1763), [anon_sym_volatile] = ACTIONS(1763), @@ -61694,8 +61706,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1763), [anon_sym__Noreturn] = ACTIONS(1763), [anon_sym_noreturn] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1769), [anon_sym_sizeof] = ACTIONS(1693), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), @@ -61725,41 +61737,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [469] = { [sym_type_qualifier] = STATE(739), - [sym__expression] = STATE(1092), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(895), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(895), - [sym_call_expression] = STATE(895), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(895), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(895), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym__type_definition_type_repeat1] = STATE(739), + [sym__expression] = STATE(1091), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(894), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(894), + [sym_call_expression] = STATE(894), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(894), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(894), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [aux_sym_array_declarator_repeat1] = STATE(739), [sym_identifier] = ACTIONS(1687), [anon_sym_LPAREN2] = ACTIONS(1757), [anon_sym_BANG] = ACTIONS(1691), [anon_sym_TILDE] = ACTIONS(1691), [anon_sym_DASH] = ACTIONS(1689), [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_STAR] = ACTIONS(1791), [anon_sym_AMP] = ACTIONS(1761), [anon_sym___extension__] = ACTIONS(1763), - [anon_sym_RBRACK] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(1765), + [anon_sym_RBRACK] = ACTIONS(1793), [anon_sym_const] = ACTIONS(1763), [anon_sym_constexpr] = ACTIONS(1763), [anon_sym_volatile] = ACTIONS(1763), @@ -61768,8 +61781,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1763), [anon_sym__Noreturn] = ACTIONS(1763), [anon_sym_noreturn] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1769), [anon_sym_sizeof] = ACTIONS(1693), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), @@ -61799,41 +61812,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [470] = { [sym_type_qualifier] = STATE(467), - [sym__expression] = STATE(1093), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(895), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(895), - [sym_call_expression] = STATE(895), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(895), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(895), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym__type_definition_type_repeat1] = STATE(467), + [sym__expression] = STATE(1096), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(894), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(894), + [sym_call_expression] = STATE(894), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(894), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(894), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [aux_sym_array_declarator_repeat1] = STATE(467), [sym_identifier] = ACTIONS(1687), [anon_sym_LPAREN2] = ACTIONS(1757), [anon_sym_BANG] = ACTIONS(1691), [anon_sym_TILDE] = ACTIONS(1691), [anon_sym_DASH] = ACTIONS(1689), [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1789), + [anon_sym_STAR] = ACTIONS(1795), [anon_sym_AMP] = ACTIONS(1761), [anon_sym___extension__] = ACTIONS(1763), - [anon_sym_RBRACK] = ACTIONS(1791), + [anon_sym_static] = ACTIONS(1797), + [anon_sym_RBRACK] = ACTIONS(1799), [anon_sym_const] = ACTIONS(1763), [anon_sym_constexpr] = ACTIONS(1763), [anon_sym_volatile] = ACTIONS(1763), @@ -61842,8 +61856,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1763), [anon_sym__Noreturn] = ACTIONS(1763), [anon_sym_noreturn] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1769), [anon_sym_sizeof] = ACTIONS(1693), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), @@ -61872,42 +61886,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [471] = { - [sym_type_qualifier] = STATE(469), - [sym__expression] = STATE(1088), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(895), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(895), - [sym_call_expression] = STATE(895), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(895), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(895), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym__type_definition_type_repeat1] = STATE(469), + [sym_type_qualifier] = STATE(473), + [sym__expression] = STATE(1094), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(894), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(894), + [sym_call_expression] = STATE(894), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(894), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(894), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [aux_sym_array_declarator_repeat1] = STATE(473), [sym_identifier] = ACTIONS(1687), [anon_sym_LPAREN2] = ACTIONS(1757), [anon_sym_BANG] = ACTIONS(1691), [anon_sym_TILDE] = ACTIONS(1691), [anon_sym_DASH] = ACTIONS(1689), [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1793), + [anon_sym_STAR] = ACTIONS(1801), [anon_sym_AMP] = ACTIONS(1761), [anon_sym___extension__] = ACTIONS(1763), - [anon_sym_RBRACK] = ACTIONS(1795), + [anon_sym_static] = ACTIONS(1803), + [anon_sym_RBRACK] = ACTIONS(1805), [anon_sym_const] = ACTIONS(1763), [anon_sym_constexpr] = ACTIONS(1763), [anon_sym_volatile] = ACTIONS(1763), @@ -61916,8 +61931,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1763), [anon_sym__Noreturn] = ACTIONS(1763), [anon_sym_noreturn] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1769), [anon_sym_sizeof] = ACTIONS(1693), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), @@ -61946,42 +61961,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [472] = { - [sym_type_qualifier] = STATE(473), - [sym__expression] = STATE(1094), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(895), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(895), - [sym_call_expression] = STATE(895), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(895), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(895), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym__type_definition_type_repeat1] = STATE(473), + [sym_type_qualifier] = STATE(464), + [sym__expression] = STATE(1088), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(894), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(894), + [sym_call_expression] = STATE(894), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(894), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(894), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [aux_sym_array_declarator_repeat1] = STATE(464), [sym_identifier] = ACTIONS(1687), [anon_sym_LPAREN2] = ACTIONS(1757), [anon_sym_BANG] = ACTIONS(1691), [anon_sym_TILDE] = ACTIONS(1691), [anon_sym_DASH] = ACTIONS(1689), [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(1807), [anon_sym_AMP] = ACTIONS(1761), [anon_sym___extension__] = ACTIONS(1763), - [anon_sym_RBRACK] = ACTIONS(1799), + [anon_sym_static] = ACTIONS(1809), + [anon_sym_RBRACK] = ACTIONS(1811), [anon_sym_const] = ACTIONS(1763), [anon_sym_constexpr] = ACTIONS(1763), [anon_sym_volatile] = ACTIONS(1763), @@ -61990,8 +62006,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1763), [anon_sym__Noreturn] = ACTIONS(1763), [anon_sym_noreturn] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1769), [anon_sym_sizeof] = ACTIONS(1693), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), @@ -62022,40 +62038,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [473] = { [sym_type_qualifier] = STATE(739), [sym__expression] = STATE(1090), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(895), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(895), - [sym_call_expression] = STATE(895), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(895), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(895), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym__type_definition_type_repeat1] = STATE(739), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(894), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(894), + [sym_call_expression] = STATE(894), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(894), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(894), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [aux_sym_array_declarator_repeat1] = STATE(739), [sym_identifier] = ACTIONS(1687), [anon_sym_LPAREN2] = ACTIONS(1757), [anon_sym_BANG] = ACTIONS(1691), [anon_sym_TILDE] = ACTIONS(1691), [anon_sym_DASH] = ACTIONS(1689), [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1813), [anon_sym_AMP] = ACTIONS(1761), [anon_sym___extension__] = ACTIONS(1763), - [anon_sym_RBRACK] = ACTIONS(1803), + [anon_sym_static] = ACTIONS(1765), + [anon_sym_RBRACK] = ACTIONS(1815), [anon_sym_const] = ACTIONS(1763), [anon_sym_constexpr] = ACTIONS(1763), [anon_sym_volatile] = ACTIONS(1763), @@ -62064,8 +62081,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1763), [anon_sym__Noreturn] = ACTIONS(1763), [anon_sym_noreturn] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1769), [anon_sym_sizeof] = ACTIONS(1693), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), @@ -62094,38 +62111,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [474] = { - [sym__expression] = STATE(1024), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), + [sym__expression] = STATE(1025), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), [sym_initializer_list] = STATE(1586), [sym_initializer_pair] = STATE(1586), - [sym_subscript_designator] = STATE(1430), - [sym_subscript_range_designator] = STATE(1430), - [sym_field_designator] = STATE(1430), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym_initializer_pair_repeat1] = STATE(1430), - [sym_identifier] = ACTIONS(1805), - [anon_sym_COMMA] = ACTIONS(1807), + [sym_subscript_designator] = STATE(1429), + [sym_subscript_range_designator] = STATE(1429), + [sym_field_designator] = STATE(1429), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [aux_sym_initializer_pair_repeat1] = STATE(1429), + [sym_identifier] = ACTIONS(1817), + [anon_sym_COMMA] = ACTIONS(1819), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62134,8 +62151,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1811), + [anon_sym_RBRACE] = ACTIONS(1821), + [anon_sym_LBRACK] = ACTIONS(1823), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -62148,7 +62165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1813), + [anon_sym_DOT] = ACTIONS(1825), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -62167,37 +62184,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [475] = { - [sym__expression] = STATE(1076), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), + [sym__expression] = STATE(1059), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), [sym_initializer_list] = STATE(1751), [sym_initializer_pair] = STATE(1751), - [sym_subscript_designator] = STATE(1430), - [sym_subscript_range_designator] = STATE(1430), - [sym_field_designator] = STATE(1430), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym_initializer_pair_repeat1] = STATE(1430), - [sym_identifier] = ACTIONS(1805), + [sym_subscript_designator] = STATE(1429), + [sym_subscript_range_designator] = STATE(1429), + [sym_field_designator] = STATE(1429), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [aux_sym_initializer_pair_repeat1] = STATE(1429), + [sym_identifier] = ACTIONS(1817), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62206,8 +62223,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1815), - [anon_sym_LBRACK] = ACTIONS(1811), + [anon_sym_RBRACE] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1823), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -62220,7 +62237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1813), + [anon_sym_DOT] = ACTIONS(1825), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -62239,37 +62256,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [476] = { - [sym__expression] = STATE(1076), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), + [sym__expression] = STATE(1059), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), [sym_initializer_list] = STATE(1751), [sym_initializer_pair] = STATE(1751), - [sym_subscript_designator] = STATE(1430), - [sym_subscript_range_designator] = STATE(1430), - [sym_field_designator] = STATE(1430), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym_initializer_pair_repeat1] = STATE(1430), - [sym_identifier] = ACTIONS(1805), + [sym_subscript_designator] = STATE(1429), + [sym_subscript_range_designator] = STATE(1429), + [sym_field_designator] = STATE(1429), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [aux_sym_initializer_pair_repeat1] = STATE(1429), + [sym_identifier] = ACTIONS(1817), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62278,8 +62295,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1811), + [anon_sym_RBRACE] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(1823), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -62292,7 +62309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1813), + [anon_sym_DOT] = ACTIONS(1825), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -62311,37 +62328,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [477] = { - [sym__expression] = STATE(1076), - [sym__expression_not_binary] = STATE(700), - [sym__string] = STATE(700), - [sym_conditional_expression] = STATE(700), - [sym_assignment_expression] = STATE(700), - [sym_pointer_expression] = STATE(840), - [sym_unary_expression] = STATE(700), - [sym_binary_expression] = STATE(700), - [sym_update_expression] = STATE(700), - [sym_cast_expression] = STATE(700), - [sym_sizeof_expression] = STATE(700), - [sym_alignof_expression] = STATE(700), - [sym_offsetof_expression] = STATE(700), - [sym_generic_expression] = STATE(700), - [sym_subscript_expression] = STATE(840), - [sym_call_expression] = STATE(840), - [sym_gnu_asm_expression] = STATE(700), - [sym_field_expression] = STATE(840), - [sym_compound_literal_expression] = STATE(700), - [sym_parenthesized_expression] = STATE(840), + [sym__expression] = STATE(1059), + [sym__expression_not_binary] = STATE(708), + [sym__string] = STATE(708), + [sym_conditional_expression] = STATE(708), + [sym_assignment_expression] = STATE(708), + [sym_pointer_expression] = STATE(844), + [sym_unary_expression] = STATE(708), + [sym_binary_expression] = STATE(708), + [sym_update_expression] = STATE(708), + [sym_cast_expression] = STATE(708), + [sym_sizeof_expression] = STATE(708), + [sym_alignof_expression] = STATE(708), + [sym_offsetof_expression] = STATE(708), + [sym_generic_expression] = STATE(708), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_gnu_asm_expression] = STATE(708), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(708), + [sym_parenthesized_expression] = STATE(844), [sym_initializer_list] = STATE(1751), [sym_initializer_pair] = STATE(1751), - [sym_subscript_designator] = STATE(1430), - [sym_subscript_range_designator] = STATE(1430), - [sym_field_designator] = STATE(1430), - [sym_char_literal] = STATE(700), - [sym_concatenated_string] = STATE(700), - [sym_string_literal] = STATE(683), - [sym_null] = STATE(700), - [aux_sym_initializer_pair_repeat1] = STATE(1430), - [sym_identifier] = ACTIONS(1805), + [sym_subscript_designator] = STATE(1429), + [sym_subscript_range_designator] = STATE(1429), + [sym_field_designator] = STATE(1429), + [sym_char_literal] = STATE(708), + [sym_concatenated_string] = STATE(708), + [sym_string_literal] = STATE(687), + [sym_null] = STATE(708), + [aux_sym_initializer_pair_repeat1] = STATE(1429), + [sym_identifier] = ACTIONS(1817), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62350,7 +62367,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1811), + [anon_sym_LBRACK] = ACTIONS(1823), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -62363,7 +62380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1813), + [anon_sym_DOT] = ACTIONS(1825), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -62382,43 +62399,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [478] = { - [sym_preproc_def] = STATE(486), - [sym_preproc_function_def] = STATE(486), - [sym_preproc_call] = STATE(486), - [sym_preproc_if_in_field_declaration_list] = STATE(486), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(486), + [sym_preproc_def] = STATE(488), + [sym_preproc_function_def] = STATE(488), + [sym_preproc_call] = STATE(488), + [sym_preproc_if_in_field_declaration_list] = STATE(488), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(488), [sym_preproc_else_in_field_declaration_list] = STATE(1978), [sym_preproc_elif_in_field_declaration_list] = STATE(1978), [sym_preproc_elifdef_in_field_declaration_list] = STATE(1978), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__field_declaration_list_item] = STATE(486), - [sym_field_declaration] = STATE(486), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(486), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(750), + [sym_ms_declspec_modifier] = STATE(750), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__field_declaration_list_item] = STATE(488), + [sym_field_declaration] = STATE(488), + [sym_macro_type_specifier] = STATE(825), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(488), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1825), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1831), + [aux_sym_preproc_def_token1] = ACTIONS(1833), + [aux_sym_preproc_if_token1] = ACTIONS(1835), + [aux_sym_preproc_if_token2] = ACTIONS(1837), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), + [aux_sym_preproc_else_token1] = ACTIONS(1841), + [aux_sym_preproc_elif_token1] = ACTIONS(1843), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), + [sym_preproc_directive] = ACTIONS(1847), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -62452,43 +62469,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [479] = { - [sym_preproc_def] = STATE(495), - [sym_preproc_function_def] = STATE(495), - [sym_preproc_call] = STATE(495), - [sym_preproc_if_in_field_declaration_list] = STATE(495), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(495), - [sym_preproc_else_in_field_declaration_list] = STATE(1866), - [sym_preproc_elif_in_field_declaration_list] = STATE(1866), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1866), - [sym__declaration_modifiers] = STATE(749), + [sym_preproc_def] = STATE(493), + [sym_preproc_function_def] = STATE(493), + [sym_preproc_call] = STATE(493), + [sym_preproc_if_in_field_declaration_list] = STATE(493), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(493), + [sym_preproc_else_in_field_declaration_list] = STATE(1984), + [sym_preproc_elif_in_field_declaration_list] = STATE(1984), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1984), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__field_declaration_list_item] = STATE(495), - [sym_field_declaration] = STATE(495), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(750), + [sym_ms_declspec_modifier] = STATE(750), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__field_declaration_list_item] = STATE(493), + [sym_field_declaration] = STATE(493), + [sym_macro_type_specifier] = STATE(825), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(493), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1837), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1831), + [aux_sym_preproc_def_token1] = ACTIONS(1833), + [aux_sym_preproc_if_token1] = ACTIONS(1835), + [aux_sym_preproc_if_token2] = ACTIONS(1849), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), + [aux_sym_preproc_else_token1] = ACTIONS(1841), + [aux_sym_preproc_elif_token1] = ACTIONS(1843), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), + [sym_preproc_directive] = ACTIONS(1847), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -62522,43 +62539,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [480] = { - [sym_preproc_def] = STATE(491), - [sym_preproc_function_def] = STATE(491), - [sym_preproc_call] = STATE(491), - [sym_preproc_if_in_field_declaration_list] = STATE(491), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(491), - [sym_preproc_else_in_field_declaration_list] = STATE(1840), - [sym_preproc_elif_in_field_declaration_list] = STATE(1840), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1840), - [sym__declaration_modifiers] = STATE(749), + [sym_preproc_def] = STATE(495), + [sym_preproc_function_def] = STATE(495), + [sym_preproc_call] = STATE(495), + [sym_preproc_if_in_field_declaration_list] = STATE(495), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(495), + [sym_preproc_else_in_field_declaration_list] = STATE(1866), + [sym_preproc_elif_in_field_declaration_list] = STATE(1866), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1866), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__field_declaration_list_item] = STATE(491), - [sym_field_declaration] = STATE(491), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(491), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(750), + [sym_ms_declspec_modifier] = STATE(750), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__field_declaration_list_item] = STATE(495), + [sym_field_declaration] = STATE(495), + [sym_macro_type_specifier] = STATE(825), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1839), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1831), + [aux_sym_preproc_def_token1] = ACTIONS(1833), + [aux_sym_preproc_if_token1] = ACTIONS(1835), + [aux_sym_preproc_if_token2] = ACTIONS(1851), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), + [aux_sym_preproc_else_token1] = ACTIONS(1841), + [aux_sym_preproc_elif_token1] = ACTIONS(1843), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), + [sym_preproc_directive] = ACTIONS(1847), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -62597,38 +62614,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(495), [sym_preproc_if_in_field_declaration_list] = STATE(495), [sym_preproc_ifdef_in_field_declaration_list] = STATE(495), - [sym_preproc_else_in_field_declaration_list] = STATE(1929), - [sym_preproc_elif_in_field_declaration_list] = STATE(1929), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1929), - [sym__declaration_modifiers] = STATE(749), + [sym_preproc_else_in_field_declaration_list] = STATE(1821), + [sym_preproc_elif_in_field_declaration_list] = STATE(1821), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1821), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(750), + [sym_ms_declspec_modifier] = STATE(750), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym__field_declaration_list_item] = STATE(495), [sym_field_declaration] = STATE(495), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1841), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1831), + [aux_sym_preproc_def_token1] = ACTIONS(1833), + [aux_sym_preproc_if_token1] = ACTIONS(1835), + [aux_sym_preproc_if_token2] = ACTIONS(1853), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), + [aux_sym_preproc_else_token1] = ACTIONS(1841), + [aux_sym_preproc_elif_token1] = ACTIONS(1843), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), + [sym_preproc_directive] = ACTIONS(1847), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -62662,43 +62679,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [482] = { - [sym_preproc_def] = STATE(479), - [sym_preproc_function_def] = STATE(479), - [sym_preproc_call] = STATE(479), - [sym_preproc_if_in_field_declaration_list] = STATE(479), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(479), + [sym_preproc_def] = STATE(480), + [sym_preproc_function_def] = STATE(480), + [sym_preproc_call] = STATE(480), + [sym_preproc_if_in_field_declaration_list] = STATE(480), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(480), [sym_preproc_else_in_field_declaration_list] = STATE(1798), [sym_preproc_elif_in_field_declaration_list] = STATE(1798), [sym_preproc_elifdef_in_field_declaration_list] = STATE(1798), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__field_declaration_list_item] = STATE(479), - [sym_field_declaration] = STATE(479), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(479), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(750), + [sym_ms_declspec_modifier] = STATE(750), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__field_declaration_list_item] = STATE(480), + [sym_field_declaration] = STATE(480), + [sym_macro_type_specifier] = STATE(825), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(480), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1843), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1831), + [aux_sym_preproc_def_token1] = ACTIONS(1833), + [aux_sym_preproc_if_token1] = ACTIONS(1835), + [aux_sym_preproc_if_token2] = ACTIONS(1855), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), + [aux_sym_preproc_else_token1] = ACTIONS(1841), + [aux_sym_preproc_elif_token1] = ACTIONS(1843), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), + [sym_preproc_directive] = ACTIONS(1847), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -62740,35 +62757,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_else_in_field_declaration_list] = STATE(1831), [sym_preproc_elif_in_field_declaration_list] = STATE(1831), [sym_preproc_elifdef_in_field_declaration_list] = STATE(1831), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(750), + [sym_ms_declspec_modifier] = STATE(750), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym__field_declaration_list_item] = STATE(481), [sym_field_declaration] = STATE(481), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(481), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1845), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1831), + [aux_sym_preproc_def_token1] = ACTIONS(1833), + [aux_sym_preproc_if_token1] = ACTIONS(1835), + [aux_sym_preproc_if_token2] = ACTIONS(1857), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), + [aux_sym_preproc_else_token1] = ACTIONS(1841), + [aux_sym_preproc_elif_token1] = ACTIONS(1843), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), + [sym_preproc_directive] = ACTIONS(1847), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -62810,35 +62827,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_else_in_field_declaration_list] = STATE(1873), [sym_preproc_elif_in_field_declaration_list] = STATE(1873), [sym_preproc_elifdef_in_field_declaration_list] = STATE(1873), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(750), + [sym_ms_declspec_modifier] = STATE(750), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym__field_declaration_list_item] = STATE(485), [sym_field_declaration] = STATE(485), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(485), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1847), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1831), + [aux_sym_preproc_def_token1] = ACTIONS(1833), + [aux_sym_preproc_if_token1] = ACTIONS(1835), + [aux_sym_preproc_if_token2] = ACTIONS(1859), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), + [aux_sym_preproc_else_token1] = ACTIONS(1841), + [aux_sym_preproc_elif_token1] = ACTIONS(1843), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), + [sym_preproc_directive] = ACTIONS(1847), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -62880,35 +62897,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_else_in_field_declaration_list] = STATE(1981), [sym_preproc_elif_in_field_declaration_list] = STATE(1981), [sym_preproc_elifdef_in_field_declaration_list] = STATE(1981), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(750), + [sym_ms_declspec_modifier] = STATE(750), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym__field_declaration_list_item] = STATE(495), [sym_field_declaration] = STATE(495), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1849), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1831), + [aux_sym_preproc_def_token1] = ACTIONS(1833), + [aux_sym_preproc_if_token1] = ACTIONS(1835), + [aux_sym_preproc_if_token2] = ACTIONS(1861), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), + [aux_sym_preproc_else_token1] = ACTIONS(1841), + [aux_sym_preproc_elif_token1] = ACTIONS(1843), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), + [sym_preproc_directive] = ACTIONS(1847), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -62942,6 +62959,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [486] = { + [sym_preproc_def] = STATE(489), + [sym_preproc_function_def] = STATE(489), + [sym_preproc_call] = STATE(489), + [sym_preproc_if_in_field_declaration_list] = STATE(489), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(489), + [sym_preproc_else_in_field_declaration_list] = STATE(1840), + [sym_preproc_elif_in_field_declaration_list] = STATE(1840), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1840), + [sym__declaration_modifiers] = STATE(750), + [sym__declaration_specifiers] = STATE(1289), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(750), + [sym_ms_declspec_modifier] = STATE(750), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__field_declaration_list_item] = STATE(489), + [sym_field_declaration] = STATE(489), + [sym_macro_type_specifier] = STATE(825), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(489), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), + [aux_sym_sized_type_specifier_repeat1] = STATE(843), + [sym_identifier] = ACTIONS(1831), + [aux_sym_preproc_def_token1] = ACTIONS(1833), + [aux_sym_preproc_if_token1] = ACTIONS(1835), + [aux_sym_preproc_if_token2] = ACTIONS(1863), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), + [aux_sym_preproc_else_token1] = ACTIONS(1841), + [aux_sym_preproc_elif_token1] = ACTIONS(1843), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), + [sym_preproc_directive] = ACTIONS(1847), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [sym_comment] = ACTIONS(3), + }, + [487] = { + [sym_preproc_def] = STATE(492), + [sym_preproc_function_def] = STATE(492), + [sym_preproc_call] = STATE(492), + [sym_preproc_if_in_field_declaration_list] = STATE(492), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(492), + [sym_preproc_else_in_field_declaration_list] = STATE(1830), + [sym_preproc_elif_in_field_declaration_list] = STATE(1830), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1830), + [sym__declaration_modifiers] = STATE(750), + [sym__declaration_specifiers] = STATE(1289), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(750), + [sym_ms_declspec_modifier] = STATE(750), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__field_declaration_list_item] = STATE(492), + [sym_field_declaration] = STATE(492), + [sym_macro_type_specifier] = STATE(825), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(492), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), + [aux_sym_sized_type_specifier_repeat1] = STATE(843), + [sym_identifier] = ACTIONS(1831), + [aux_sym_preproc_def_token1] = ACTIONS(1833), + [aux_sym_preproc_if_token1] = ACTIONS(1835), + [aux_sym_preproc_if_token2] = ACTIONS(1865), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), + [aux_sym_preproc_else_token1] = ACTIONS(1841), + [aux_sym_preproc_elif_token1] = ACTIONS(1843), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), + [sym_preproc_directive] = ACTIONS(1847), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [sym_comment] = ACTIONS(3), + }, + [488] = { [sym_preproc_def] = STATE(495), [sym_preproc_function_def] = STATE(495), [sym_preproc_call] = STATE(495), @@ -62950,35 +63107,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_else_in_field_declaration_list] = STATE(1843), [sym_preproc_elif_in_field_declaration_list] = STATE(1843), [sym_preproc_elifdef_in_field_declaration_list] = STATE(1843), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(750), + [sym_ms_declspec_modifier] = STATE(750), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym__field_declaration_list_item] = STATE(495), [sym_field_declaration] = STATE(495), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1851), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1831), + [aux_sym_preproc_def_token1] = ACTIONS(1833), + [aux_sym_preproc_if_token1] = ACTIONS(1835), + [aux_sym_preproc_if_token2] = ACTIONS(1867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), + [aux_sym_preproc_else_token1] = ACTIONS(1841), + [aux_sym_preproc_elif_token1] = ACTIONS(1843), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), + [sym_preproc_directive] = ACTIONS(1847), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -63011,44 +63168,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [487] = { - [sym_preproc_def] = STATE(488), - [sym_preproc_function_def] = STATE(488), - [sym_preproc_call] = STATE(488), - [sym_preproc_if_in_field_declaration_list] = STATE(488), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(488), - [sym_preproc_else_in_field_declaration_list] = STATE(1987), - [sym_preproc_elif_in_field_declaration_list] = STATE(1987), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1987), - [sym__declaration_modifiers] = STATE(749), + [489] = { + [sym_preproc_def] = STATE(495), + [sym_preproc_function_def] = STATE(495), + [sym_preproc_call] = STATE(495), + [sym_preproc_if_in_field_declaration_list] = STATE(495), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(495), + [sym_preproc_else_in_field_declaration_list] = STATE(1829), + [sym_preproc_elif_in_field_declaration_list] = STATE(1829), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1829), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__field_declaration_list_item] = STATE(488), - [sym_field_declaration] = STATE(488), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(488), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(750), + [sym_ms_declspec_modifier] = STATE(750), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__field_declaration_list_item] = STATE(495), + [sym_field_declaration] = STATE(495), + [sym_macro_type_specifier] = STATE(825), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1853), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1831), + [aux_sym_preproc_def_token1] = ACTIONS(1833), + [aux_sym_preproc_if_token1] = ACTIONS(1835), + [aux_sym_preproc_if_token2] = ACTIONS(1869), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), + [aux_sym_preproc_else_token1] = ACTIONS(1841), + [aux_sym_preproc_elif_token1] = ACTIONS(1843), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), + [sym_preproc_directive] = ACTIONS(1847), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -63081,184 +63238,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [488] = { - [sym_preproc_def] = STATE(495), - [sym_preproc_function_def] = STATE(495), - [sym_preproc_call] = STATE(495), - [sym_preproc_if_in_field_declaration_list] = STATE(495), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(495), - [sym_preproc_else_in_field_declaration_list] = STATE(1983), - [sym_preproc_elif_in_field_declaration_list] = STATE(1983), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1983), - [sym__declaration_modifiers] = STATE(749), + [490] = { + [sym_preproc_def] = STATE(491), + [sym_preproc_function_def] = STATE(491), + [sym_preproc_call] = STATE(491), + [sym_preproc_if_in_field_declaration_list] = STATE(491), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(491), + [sym_preproc_else_in_field_declaration_list] = STATE(1987), + [sym_preproc_elif_in_field_declaration_list] = STATE(1987), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1987), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__field_declaration_list_item] = STATE(495), - [sym_field_declaration] = STATE(495), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(750), + [sym_ms_declspec_modifier] = STATE(750), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), + [sym__field_declaration_list_item] = STATE(491), + [sym_field_declaration] = STATE(491), + [sym_macro_type_specifier] = STATE(825), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(491), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1855), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [sym_comment] = ACTIONS(3), - }, - [489] = { - [sym_preproc_def] = STATE(493), - [sym_preproc_function_def] = STATE(493), - [sym_preproc_call] = STATE(493), - [sym_preproc_if_in_field_declaration_list] = STATE(493), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(493), - [sym_preproc_else_in_field_declaration_list] = STATE(1830), - [sym_preproc_elif_in_field_declaration_list] = STATE(1830), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1830), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__field_declaration_list_item] = STATE(493), - [sym_field_declaration] = STATE(493), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(493), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1857), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1104), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [sym_comment] = ACTIONS(3), - }, - [490] = { - [sym_preproc_def] = STATE(492), - [sym_preproc_function_def] = STATE(492), - [sym_preproc_call] = STATE(492), - [sym_preproc_if_in_field_declaration_list] = STATE(492), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(492), - [sym_preproc_else_in_field_declaration_list] = STATE(1984), - [sym_preproc_elif_in_field_declaration_list] = STATE(1984), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1984), - [sym__declaration_modifiers] = STATE(749), - [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), - [sym__field_declaration_list_item] = STATE(492), - [sym_field_declaration] = STATE(492), - [sym_macro_type_specifier] = STATE(821), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(492), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), - [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1831), + [aux_sym_preproc_def_token1] = ACTIONS(1833), + [aux_sym_preproc_if_token1] = ACTIONS(1835), + [aux_sym_preproc_if_token2] = ACTIONS(1871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), + [aux_sym_preproc_else_token1] = ACTIONS(1841), + [aux_sym_preproc_elif_token1] = ACTIONS(1843), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), + [sym_preproc_directive] = ACTIONS(1847), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -63297,38 +63314,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(495), [sym_preproc_if_in_field_declaration_list] = STATE(495), [sym_preproc_ifdef_in_field_declaration_list] = STATE(495), - [sym_preproc_else_in_field_declaration_list] = STATE(1829), - [sym_preproc_elif_in_field_declaration_list] = STATE(1829), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1829), - [sym__declaration_modifiers] = STATE(749), + [sym_preproc_else_in_field_declaration_list] = STATE(1983), + [sym_preproc_elif_in_field_declaration_list] = STATE(1983), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1983), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(750), + [sym_ms_declspec_modifier] = STATE(750), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym__field_declaration_list_item] = STATE(495), [sym_field_declaration] = STATE(495), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1861), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1831), + [aux_sym_preproc_def_token1] = ACTIONS(1833), + [aux_sym_preproc_if_token1] = ACTIONS(1835), + [aux_sym_preproc_if_token2] = ACTIONS(1873), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), + [aux_sym_preproc_else_token1] = ACTIONS(1841), + [aux_sym_preproc_elif_token1] = ACTIONS(1843), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), + [sym_preproc_directive] = ACTIONS(1847), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -63367,38 +63384,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(495), [sym_preproc_if_in_field_declaration_list] = STATE(495), [sym_preproc_ifdef_in_field_declaration_list] = STATE(495), - [sym_preproc_else_in_field_declaration_list] = STATE(1982), - [sym_preproc_elif_in_field_declaration_list] = STATE(1982), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1982), - [sym__declaration_modifiers] = STATE(749), + [sym_preproc_else_in_field_declaration_list] = STATE(1828), + [sym_preproc_elif_in_field_declaration_list] = STATE(1828), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1828), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(750), + [sym_ms_declspec_modifier] = STATE(750), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym__field_declaration_list_item] = STATE(495), [sym_field_declaration] = STATE(495), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1863), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1831), + [aux_sym_preproc_def_token1] = ACTIONS(1833), + [aux_sym_preproc_if_token1] = ACTIONS(1835), + [aux_sym_preproc_if_token2] = ACTIONS(1875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), + [aux_sym_preproc_else_token1] = ACTIONS(1841), + [aux_sym_preproc_elif_token1] = ACTIONS(1843), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), + [sym_preproc_directive] = ACTIONS(1847), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -63437,38 +63454,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(495), [sym_preproc_if_in_field_declaration_list] = STATE(495), [sym_preproc_ifdef_in_field_declaration_list] = STATE(495), - [sym_preproc_else_in_field_declaration_list] = STATE(1828), - [sym_preproc_elif_in_field_declaration_list] = STATE(1828), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1828), - [sym__declaration_modifiers] = STATE(749), + [sym_preproc_else_in_field_declaration_list] = STATE(1982), + [sym_preproc_elif_in_field_declaration_list] = STATE(1982), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1982), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(750), + [sym_ms_declspec_modifier] = STATE(750), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym__field_declaration_list_item] = STATE(495), [sym_field_declaration] = STATE(495), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), - [aux_sym_preproc_def_token1] = ACTIONS(1821), - [aux_sym_preproc_if_token1] = ACTIONS(1823), - [aux_sym_preproc_if_token2] = ACTIONS(1865), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1827), - [aux_sym_preproc_else_token1] = ACTIONS(1829), - [aux_sym_preproc_elif_token1] = ACTIONS(1831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1833), - [sym_preproc_directive] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1831), + [aux_sym_preproc_def_token1] = ACTIONS(1833), + [aux_sym_preproc_if_token1] = ACTIONS(1835), + [aux_sym_preproc_if_token2] = ACTIONS(1877), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1839), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1839), + [aux_sym_preproc_else_token1] = ACTIONS(1841), + [aux_sym_preproc_elif_token1] = ACTIONS(1843), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1845), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1845), + [sym_preproc_directive] = ACTIONS(1847), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -63502,35 +63519,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [494] = { - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1184), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(750), + [sym_ms_declspec_modifier] = STATE(750), [sym_ms_call_modifier] = STATE(1390), [sym__abstract_declarator] = STATE(1523), - [sym_abstract_parenthesized_declarator] = STATE(1496), - [sym_abstract_pointer_declarator] = STATE(1496), - [sym_abstract_function_declarator] = STATE(1496), - [sym_abstract_array_declarator] = STATE(1496), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_abstract_parenthesized_declarator] = STATE(1487), + [sym_abstract_pointer_declarator] = STATE(1487), + [sym_abstract_function_declarator] = STATE(1487), + [sym_abstract_array_declarator] = STATE(1487), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym_variadic_parameter] = STATE(1670), - [sym_parameter_list] = STATE(1486), + [sym_parameter_list] = STATE(1488), [sym_parameter_declaration] = STATE(1670), - [sym_macro_type_specifier] = STATE(821), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [sym_macro_type_specifier] = STATE(825), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1819), + [sym_identifier] = ACTIONS(1831), [anon_sym_DOT_DOT_DOT] = ACTIONS(1745), [anon_sym_RPAREN] = ACTIONS(1747), - [anon_sym_LPAREN2] = ACTIONS(1867), - [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_LPAREN2] = ACTIONS(1879), + [anon_sym_STAR] = ACTIONS(1881), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -63576,65 +63593,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(495), [sym_preproc_if_in_field_declaration_list] = STATE(495), [sym_preproc_ifdef_in_field_declaration_list] = STATE(495), - [sym__declaration_modifiers] = STATE(749), + [sym__declaration_modifiers] = STATE(750), [sym__declaration_specifiers] = STATE(1289), - [sym_attribute_specifier] = STATE(749), - [sym_attribute_declaration] = STATE(749), - [sym_ms_declspec_modifier] = STATE(749), - [sym_storage_class_specifier] = STATE(749), - [sym_type_qualifier] = STATE(749), - [sym__type_specifier] = STATE(795), - [sym_sized_type_specifier] = STATE(821), - [sym_enum_specifier] = STATE(821), - [sym_struct_specifier] = STATE(821), - [sym_union_specifier] = STATE(821), + [sym_attribute_specifier] = STATE(750), + [sym_attribute_declaration] = STATE(750), + [sym_ms_declspec_modifier] = STATE(750), + [sym_storage_class_specifier] = STATE(750), + [sym_type_qualifier] = STATE(750), + [sym__type_specifier] = STATE(793), + [sym_sized_type_specifier] = STATE(825), + [sym_enum_specifier] = STATE(825), + [sym_struct_specifier] = STATE(825), + [sym_union_specifier] = STATE(825), [sym__field_declaration_list_item] = STATE(495), [sym_field_declaration] = STATE(495), - [sym_macro_type_specifier] = STATE(821), + [sym_macro_type_specifier] = STATE(825), [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(495), - [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(750), [aux_sym_sized_type_specifier_repeat1] = STATE(843), - [sym_identifier] = ACTIONS(1871), - [aux_sym_preproc_def_token1] = ACTIONS(1874), - [aux_sym_preproc_if_token1] = ACTIONS(1877), - [aux_sym_preproc_if_token2] = ACTIONS(1880), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1882), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1882), - [aux_sym_preproc_else_token1] = ACTIONS(1880), - [aux_sym_preproc_elif_token1] = ACTIONS(1880), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1880), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1880), - [sym_preproc_directive] = ACTIONS(1885), - [anon_sym___extension__] = ACTIONS(1888), - [anon_sym_extern] = ACTIONS(1891), - [anon_sym___attribute__] = ACTIONS(1894), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1897), - [anon_sym___declspec] = ACTIONS(1900), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_static] = ACTIONS(1891), - [anon_sym_auto] = ACTIONS(1891), - [anon_sym_register] = ACTIONS(1891), - [anon_sym_inline] = ACTIONS(1891), - [anon_sym___inline] = ACTIONS(1891), - [anon_sym___inline__] = ACTIONS(1891), - [anon_sym___forceinline] = ACTIONS(1891), - [anon_sym_thread_local] = ACTIONS(1891), - [anon_sym___thread] = ACTIONS(1891), - [anon_sym_const] = ACTIONS(1888), - [anon_sym_constexpr] = ACTIONS(1888), - [anon_sym_volatile] = ACTIONS(1888), - [anon_sym_restrict] = ACTIONS(1888), - [anon_sym___restrict__] = ACTIONS(1888), - [anon_sym__Atomic] = ACTIONS(1888), - [anon_sym__Noreturn] = ACTIONS(1888), - [anon_sym_noreturn] = ACTIONS(1888), - [sym_primitive_type] = ACTIONS(1906), - [anon_sym_enum] = ACTIONS(1909), - [anon_sym_struct] = ACTIONS(1912), - [anon_sym_union] = ACTIONS(1915), + [sym_identifier] = ACTIONS(1883), + [aux_sym_preproc_def_token1] = ACTIONS(1886), + [aux_sym_preproc_if_token1] = ACTIONS(1889), + [aux_sym_preproc_if_token2] = ACTIONS(1892), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1894), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1894), + [aux_sym_preproc_else_token1] = ACTIONS(1892), + [aux_sym_preproc_elif_token1] = ACTIONS(1892), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1892), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1892), + [sym_preproc_directive] = ACTIONS(1897), + [anon_sym___extension__] = ACTIONS(1900), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym___attribute__] = ACTIONS(1906), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1909), + [anon_sym___declspec] = ACTIONS(1912), + [anon_sym_signed] = ACTIONS(1915), + [anon_sym_unsigned] = ACTIONS(1915), + [anon_sym_long] = ACTIONS(1915), + [anon_sym_short] = ACTIONS(1915), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_auto] = ACTIONS(1903), + [anon_sym_register] = ACTIONS(1903), + [anon_sym_inline] = ACTIONS(1903), + [anon_sym___inline] = ACTIONS(1903), + [anon_sym___inline__] = ACTIONS(1903), + [anon_sym___forceinline] = ACTIONS(1903), + [anon_sym_thread_local] = ACTIONS(1903), + [anon_sym___thread] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1900), + [anon_sym_constexpr] = ACTIONS(1900), + [anon_sym_volatile] = ACTIONS(1900), + [anon_sym_restrict] = ACTIONS(1900), + [anon_sym___restrict__] = ACTIONS(1900), + [anon_sym__Atomic] = ACTIONS(1900), + [anon_sym__Noreturn] = ACTIONS(1900), + [anon_sym_noreturn] = ACTIONS(1900), + [sym_primitive_type] = ACTIONS(1918), + [anon_sym_enum] = ACTIONS(1921), + [anon_sym_struct] = ACTIONS(1924), + [anon_sym_union] = ACTIONS(1927), [sym_comment] = ACTIONS(3), }, }; @@ -63657,13 +63674,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(1930), 1, anon_sym_RPAREN, - ACTIONS(1920), 1, + ACTIONS(1932), 1, anon_sym___extension__, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1023), 1, + STATE(1021), 1, sym__expression, STATE(1640), 1, sym_compound_statement, @@ -63706,13 +63723,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -63747,13 +63764,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1922), 1, + ACTIONS(1934), 1, anon_sym_RPAREN, - ACTIONS(1924), 1, + ACTIONS(1936), 1, anon_sym___extension__, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1022), 1, + STATE(1024), 1, sym__expression, STATE(1659), 1, sym_compound_statement, @@ -63796,13 +63813,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -63837,11 +63854,11 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1926), 1, + ACTIONS(1938), 1, anon_sym___extension__, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1049), 1, + STATE(1046), 1, sym__expression, STATE(1704), 1, sym_compound_statement, @@ -63884,13 +63901,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -63925,12 +63942,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1044), 1, - sym__expression, - STATE(1693), 1, + STATE(713), 1, sym_initializer_list, + STATE(733), 1, + sym__expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -63970,13 +63987,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -64009,13 +64026,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1928), 1, - anon_sym_SEMI, - STATE(683), 1, + ACTIONS(1940), 1, + anon_sym_COLON, + STATE(687), 1, sym_string_literal, - STATE(1069), 1, + STATE(1078), 1, sym__expression, - STATE(1920), 1, + STATE(1914), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -64056,13 +64073,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -64080,29 +64097,41 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [560] = 22, + [560] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1358), 1, - anon_sym_LBRACE, - ACTIONS(1364), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1655), 1, - anon_sym_sizeof, - ACTIONS(1930), 1, - anon_sym_LPAREN2, - STATE(683), 1, + ACTIONS(1942), 1, + anon_sym_COLON, + STATE(687), 1, sym_string_literal, - STATE(714), 1, - sym_initializer_list, - STATE(869), 1, + STATE(1067), 1, sym__expression, + STATE(2016), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -64112,18 +64141,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1651), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1653), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1932), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -64142,12 +64159,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(844), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -64156,16 +64178,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [667] = 23, + [669] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -64180,13 +64198,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1934), 1, - anon_sym_RPAREN, - STATE(683), 1, + ACTIONS(1944), 1, + anon_sym_SEMI, + STATE(687), 1, sym_string_literal, - STATE(1064), 1, + STATE(1073), 1, sym__expression, - STATE(1790), 1, + STATE(1861), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -64227,13 +64245,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -64251,7 +64269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [776] = 23, + [778] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -64266,13 +64284,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1936), 1, - anon_sym_COLON, - STATE(683), 1, + ACTIONS(1946), 1, + anon_sym_SEMI, + STATE(687), 1, sym_string_literal, - STATE(1031), 1, + STATE(1049), 1, sym__expression, - STATE(2016), 1, + STATE(1863), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -64313,13 +64331,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -64337,7 +64355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [885] = 23, + [887] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -64352,13 +64370,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1938), 1, + ACTIONS(1948), 1, anon_sym_SEMI, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1081), 1, + STATE(1034), 1, sym__expression, - STATE(1861), 1, + STATE(1801), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -64399,13 +64417,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -64423,41 +64441,29 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [994] = 23, + [996] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1358), 1, + anon_sym_LBRACE, + ACTIONS(1685), 1, + anon_sym_sizeof, + ACTIONS(1950), 1, sym_identifier, - ACTIONS(1940), 1, - anon_sym_SEMI, - STATE(683), 1, - sym_string_literal, - STATE(1056), 1, + ACTIONS(1952), 1, + anon_sym_LPAREN2, + STATE(713), 1, + sym_initializer_list, + STATE(733), 1, sym__expression, - STATE(1863), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(736), 1, + sym_string_literal, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -64467,6 +64473,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1681), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1683), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1954), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1956), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -64485,13 +64503,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(801), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -64509,7 +64527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1103] = 23, + [1105] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -64524,13 +64542,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1942), 1, - anon_sym_SEMI, - STATE(683), 1, + ACTIONS(1958), 1, + anon_sym_COLON, + STATE(687), 1, sym_string_literal, - STATE(1034), 1, + STATE(1075), 1, sym__expression, - STATE(1801), 1, + STATE(1892), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -64571,13 +64589,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -64595,41 +64613,32 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1212] = 23, + [1214] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1358), 1, + anon_sym_LBRACE, + ACTIONS(1364), 1, sym_identifier, - ACTIONS(1944), 1, - anon_sym_COLON, - STATE(683), 1, + ACTIONS(1370), 1, + anon_sym_sizeof, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + STATE(687), 1, sym_string_literal, - STATE(1075), 1, + STATE(713), 1, + sym_initializer_list, + STATE(733), 1, sym__expression, - STATE(1892), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -64639,6 +64648,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1366), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1368), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1962), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -64657,17 +64675,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -64676,8 +64689,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, @@ -64692,21 +64709,18 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1358), 1, anon_sym_LBRACE, + ACTIONS(1360), 1, + anon_sym_sizeof, ACTIONS(1364), 1, sym_identifier, - ACTIONS(1370), 1, - anon_sym_sizeof, - ACTIONS(1946), 1, + ACTIONS(1964), 1, anon_sym_LPAREN2, - STATE(683), 1, - sym_string_literal, - STATE(714), 1, + STATE(713), 1, sym_initializer_list, - STATE(722), 1, + STATE(733), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, + STATE(736), 1, + sym_string_literal, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -64716,13 +64730,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1366), 2, + ACTIONS(1354), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1368), 2, + ACTIONS(1356), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1948), 2, + ACTIONS(1954), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1966), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -64743,7 +64760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -64766,29 +64783,41 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1428] = 22, + [1428] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1358), 1, - anon_sym_LBRACE, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1950), 1, - anon_sym_LPAREN2, - STATE(714), 1, - sym_initializer_list, - STATE(722), 1, - sym__expression, - STATE(735), 1, + ACTIONS(1968), 1, + anon_sym_COLON, + STATE(687), 1, sym_string_literal, + STATE(1045), 1, + sym__expression, + STATE(1860), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -64798,18 +64827,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1354), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1356), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1952), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1954), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -64828,12 +64845,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(844), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -64842,16 +64864,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [1535] = 23, + [1537] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -64866,13 +64884,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1956), 1, + ACTIONS(1970), 1, anon_sym_COLON, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1046), 1, + STATE(1041), 1, sym__expression, - STATE(1860), 1, + STATE(1997), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -64913,13 +64931,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -64937,7 +64955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1644] = 23, + [1646] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -64950,16 +64968,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1358), 1, - anon_sym_LBRACE, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1972), 1, + anon_sym_SEMI, + STATE(687), 1, sym_string_literal, - STATE(714), 1, - sym_initializer_list, - STATE(722), 1, + STATE(1026), 1, sym__expression, + STATE(1808), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -64999,13 +65017,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -65023,7 +65041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1753] = 23, + [1755] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -65038,13 +65056,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1958), 1, - anon_sym_SEMI, - STATE(683), 1, + ACTIONS(1974), 1, + anon_sym_RPAREN, + STATE(687), 1, sym_string_literal, - STATE(1082), 1, + STATE(1063), 1, sym__expression, - STATE(1786), 1, + STATE(1790), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -65085,13 +65103,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -65109,7 +65127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1862] = 23, + [1864] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -65124,13 +65142,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1960), 1, - anon_sym_COLON, - STATE(683), 1, + ACTIONS(1976), 1, + anon_sym_SEMI, + STATE(687), 1, sym_string_literal, - STATE(1054), 1, + STATE(1069), 1, sym__expression, - STATE(1996), 1, + STATE(1911), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -65171,13 +65189,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -65195,29 +65213,41 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1971] = 23, + [1973] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1358), 1, - anon_sym_LBRACE, - ACTIONS(1687), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1693), 1, - anon_sym_sizeof, - ACTIONS(1757), 1, - anon_sym_LPAREN2, - STATE(683), 1, + ACTIONS(1978), 1, + anon_sym_RPAREN, + STATE(687), 1, sym_string_literal, - STATE(714), 1, - sym_initializer_list, - STATE(869), 1, + STATE(1064), 1, sym__expression, + STATE(1906), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -65227,18 +65257,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1689), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1691), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1767), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -65257,13 +65275,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(895), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -65281,41 +65299,29 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2080] = 23, + [2082] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1358), 1, + anon_sym_LBRACE, + ACTIONS(1364), 1, sym_identifier, - ACTIONS(1962), 1, - anon_sym_RPAREN, - STATE(683), 1, + ACTIONS(1655), 1, + anon_sym_sizeof, + ACTIONS(1980), 1, + anon_sym_LPAREN2, + STATE(687), 1, sym_string_literal, - STATE(1067), 1, + STATE(713), 1, + sym_initializer_list, + STATE(881), 1, sym__expression, - STATE(1906), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -65325,6 +65331,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1651), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1653), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1982), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -65343,17 +65361,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -65362,8 +65375,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, @@ -65380,16 +65397,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1358), 1, - anon_sym_LBRACE, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1984), 1, + anon_sym_RPAREN, + STATE(687), 1, sym_string_literal, - STATE(1055), 1, + STATE(1029), 1, sym__expression, - STATE(1748), 1, - sym_initializer_list, + STATE(1804), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -65429,13 +65446,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -65468,13 +65485,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1964), 1, + ACTIONS(1986), 1, anon_sym_RPAREN, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1032), 1, + STATE(1047), 1, sym__expression, - STATE(1804), 1, + STATE(1797), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -65515,13 +65532,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -65552,16 +65569,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1358), 1, - anon_sym_LBRACE, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1988), 1, + anon_sym_SEMI, + STATE(687), 1, sym_string_literal, - STATE(1084), 1, + STATE(1082), 1, sym__expression, - STATE(1753), 1, - sym_initializer_list, + STATE(1786), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -65601,13 +65618,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -65628,26 +65645,38 @@ static const uint16_t ts_small_parse_table[] = { [2516] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1358), 1, - anon_sym_LBRACE, - ACTIONS(1685), 1, - anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(714), 1, - sym_initializer_list, - STATE(722), 1, - sym__expression, - STATE(735), 1, + ACTIONS(1990), 1, + anon_sym_RPAREN, + STATE(687), 1, sym_string_literal, + STATE(1058), 1, + sym__expression, + STATE(1844), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -65657,18 +65686,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1681), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1683), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1952), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1970), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -65687,13 +65704,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(799), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -65724,16 +65741,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, + ACTIONS(1358), 1, + anon_sym_LBRACE, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1972), 1, - anon_sym_SEMI, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1026), 1, + STATE(1080), 1, sym__expression, - STATE(1808), 1, - sym_comma_expression, + STATE(1753), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -65773,13 +65790,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -65812,13 +65829,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1974), 1, + ACTIONS(1992), 1, anon_sym_SEMI, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1041), 1, + STATE(1054), 1, sym__expression, - STATE(1911), 1, + STATE(1920), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -65859,13 +65876,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -65886,38 +65903,26 @@ static const uint16_t ts_small_parse_table[] = { [2843] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1358), 1, + anon_sym_LBRACE, + ACTIONS(1687), 1, sym_identifier, - ACTIONS(1976), 1, - anon_sym_COLON, - STATE(683), 1, + ACTIONS(1693), 1, + anon_sym_sizeof, + ACTIONS(1757), 1, + anon_sym_LPAREN2, + STATE(687), 1, sym_string_literal, - STATE(1042), 1, + STATE(713), 1, + sym_initializer_list, + STATE(881), 1, sym__expression, - STATE(1997), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -65927,6 +65932,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1689), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1691), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1769), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -65945,13 +65962,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(894), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -65982,16 +65999,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, + ACTIONS(1358), 1, + anon_sym_LBRACE, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1978), 1, - anon_sym_RPAREN, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1047), 1, + STATE(1044), 1, sym__expression, - STATE(1797), 1, - sym_comma_expression, + STATE(1693), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -66031,13 +66048,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -66070,13 +66087,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1980), 1, - anon_sym_COLON, - STATE(683), 1, + ACTIONS(1994), 1, + anon_sym_RPAREN, + STATE(687), 1, sym_string_literal, - STATE(1078), 1, + STATE(1053), 1, sym__expression, - STATE(1914), 1, + STATE(1827), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -66117,13 +66134,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -66154,16 +66171,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, + ACTIONS(1358), 1, + anon_sym_LBRACE, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1982), 1, - anon_sym_RPAREN, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1058), 1, + STATE(1068), 1, sym__expression, - STATE(1844), 1, - sym_comma_expression, + STATE(1748), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -66203,13 +66220,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -66242,13 +66259,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(1984), 1, - anon_sym_RPAREN, - STATE(683), 1, + ACTIONS(1996), 1, + anon_sym_COLON, + STATE(687), 1, sym_string_literal, - STATE(1057), 1, + STATE(1052), 1, sym__expression, - STATE(1827), 1, + STATE(1996), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -66289,13 +66306,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -66330,23 +66347,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1831), 1, sym_identifier, - ACTIONS(1986), 1, + ACTIONS(1998), 1, aux_sym_preproc_def_token1, - ACTIONS(1988), 1, + ACTIONS(2000), 1, aux_sym_preproc_if_token1, - ACTIONS(1990), 1, - aux_sym_preproc_if_token2, - ACTIONS(1994), 1, + ACTIONS(2004), 1, sym_preproc_directive, - STATE(795), 1, + ACTIONS(2006), 1, + anon_sym_RBRACE, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1295), 1, + STATE(1299), 1, sym__declaration_specifiers, - ACTIONS(1992), 2, + ACTIONS(2002), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, ACTIONS(43), 4, @@ -66354,13 +66371,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -66368,7 +66385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(539), 8, + STATE(535), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -66398,54 +66415,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [3496] = 23, + [3496] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1871), 1, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1364), 1, sym_identifier, - ACTIONS(1880), 1, - aux_sym_preproc_if_token2, - ACTIONS(1894), 1, + ACTIONS(1655), 1, + anon_sym_sizeof, + ACTIONS(1980), 1, + anon_sym_LPAREN2, + ACTIONS(2008), 1, + anon_sym_RBRACK, + STATE(687), 1, + sym_string_literal, + STATE(887), 1, + sym__expression, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1651), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1653), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1982), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(708), 22, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_subscript_expression, + sym_call_expression, + sym_gnu_asm_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [3600] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(1897), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1900), 1, + ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(1906), 1, + ACTIONS(49), 1, sym_primitive_type, - ACTIONS(1909), 1, + ACTIONS(51), 1, anon_sym_enum, - ACTIONS(1912), 1, + ACTIONS(53), 1, anon_sym_struct, - ACTIONS(1915), 1, + ACTIONS(55), 1, anon_sym_union, - ACTIONS(1996), 1, + ACTIONS(1104), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1831), 1, + sym_identifier, + ACTIONS(2010), 1, aux_sym_preproc_def_token1, - ACTIONS(1999), 1, + ACTIONS(2012), 1, aux_sym_preproc_if_token1, - ACTIONS(2005), 1, + ACTIONS(2014), 1, + aux_sym_preproc_if_token2, + ACTIONS(2018), 1, sym_preproc_directive, - STATE(795), 1, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, STATE(1295), 1, sym__declaration_specifiers, - ACTIONS(2002), 2, + ACTIONS(2016), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(1903), 4, + ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -66453,7 +66553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(528), 8, + STATE(543), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -66462,7 +66562,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(1888), 9, + ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -66472,7 +66572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(1891), 10, + ACTIONS(45), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -66483,7 +66583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [3604] = 21, + [3708] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -66496,11 +66596,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1655), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1980), 1, anon_sym_LPAREN2, - ACTIONS(2008), 1, + ACTIONS(2020), 1, anon_sym_RBRACK, - STATE(683), 1, + STATE(687), 1, sym_string_literal, STATE(887), 1, sym__expression, @@ -66522,7 +66622,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1982), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -66543,7 +66643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -66566,27 +66666,124 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3708] = 21, + [3812] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1883), 1, + sym_identifier, + ACTIONS(1906), 1, + anon_sym___attribute__, + ACTIONS(1909), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1912), 1, + anon_sym___declspec, + ACTIONS(1918), 1, + sym_primitive_type, + ACTIONS(1921), 1, + anon_sym_enum, + ACTIONS(1924), 1, + anon_sym_struct, + ACTIONS(1927), 1, + anon_sym_union, + ACTIONS(2022), 1, + aux_sym_preproc_def_token1, + ACTIONS(2025), 1, + aux_sym_preproc_if_token1, + ACTIONS(2031), 1, + sym_preproc_directive, + ACTIONS(2034), 1, + anon_sym_RBRACE, + STATE(793), 1, + sym__type_specifier, + STATE(843), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1299), 1, + sym__declaration_specifiers, + ACTIONS(2028), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(1915), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(750), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(531), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(1900), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(1903), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [3920] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1655), 1, - anon_sym_sizeof, - ACTIONS(1930), 1, - anon_sym_LPAREN2, - ACTIONS(2010), 1, - anon_sym_RBRACK, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(887), 1, + STATE(1071), 1, sym__expression, + STATE(1945), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -66596,18 +66793,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1651), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1653), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1932), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -66626,12 +66811,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(844), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -66640,16 +66830,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [3812] = 21, + [4026] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -66662,11 +66848,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1655), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1980), 1, anon_sym_LPAREN2, - ACTIONS(2012), 1, + ACTIONS(2036), 1, anon_sym_RBRACK, - STATE(683), 1, + STATE(687), 1, sym_string_literal, STATE(887), 1, sym__expression, @@ -66688,7 +66874,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1982), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -66709,7 +66895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -66732,39 +66918,27 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3916] = 22, + [4130] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1364), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1655), 1, + anon_sym_sizeof, + ACTIONS(1980), 1, + anon_sym_LPAREN2, + ACTIONS(2038), 1, + anon_sym_RBRACK, + STATE(687), 1, sym_string_literal, - STATE(1068), 1, + STATE(887), 1, sym__expression, - STATE(1945), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -66774,6 +66948,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1651), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1653), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1982), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -66792,17 +66978,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -66811,59 +66992,63 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [4022] = 23, + [4234] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1871), 1, - sym_identifier, - ACTIONS(1894), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(1897), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1900), 1, + ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(1906), 1, + ACTIONS(49), 1, sym_primitive_type, - ACTIONS(1909), 1, + ACTIONS(51), 1, anon_sym_enum, - ACTIONS(1912), 1, + ACTIONS(53), 1, anon_sym_struct, - ACTIONS(1915), 1, + ACTIONS(55), 1, anon_sym_union, - ACTIONS(2014), 1, + ACTIONS(1104), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1831), 1, + sym_identifier, + ACTIONS(1998), 1, aux_sym_preproc_def_token1, - ACTIONS(2017), 1, + ACTIONS(2000), 1, aux_sym_preproc_if_token1, - ACTIONS(2023), 1, + ACTIONS(2004), 1, sym_preproc_directive, - ACTIONS(2026), 1, + ACTIONS(2040), 1, anon_sym_RBRACE, - STATE(795), 1, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, STATE(1299), 1, sym__declaration_specifiers, - ACTIONS(2020), 2, + ACTIONS(2002), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(1903), 4, + ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -66871,7 +67056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(533), 8, + STATE(531), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -66880,7 +67065,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(1888), 9, + ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -66890,7 +67075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(1891), 10, + ACTIONS(45), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -66901,7 +67086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [4130] = 23, + [4342] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -66918,23 +67103,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1831), 1, sym_identifier, - ACTIONS(2028), 1, + ACTIONS(2010), 1, aux_sym_preproc_def_token1, - ACTIONS(2030), 1, + ACTIONS(2012), 1, aux_sym_preproc_if_token1, - ACTIONS(2034), 1, + ACTIONS(2018), 1, sym_preproc_directive, - ACTIONS(2036), 1, - anon_sym_RBRACE, - STATE(795), 1, + ACTIONS(2042), 1, + aux_sym_preproc_if_token2, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1299), 1, + STATE(1295), 1, sym__declaration_specifiers, - ACTIONS(2032), 2, + ACTIONS(2016), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, ACTIONS(43), 4, @@ -66942,13 +67127,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -66956,7 +67141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(533), 8, + STATE(529), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -66986,7 +67171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [4238] = 21, + [4450] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -66999,11 +67184,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1655), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1980), 1, anon_sym_LPAREN2, - ACTIONS(2038), 1, + ACTIONS(2044), 1, anon_sym_RBRACK, - STATE(683), 1, + STATE(687), 1, sym_string_literal, STATE(887), 1, sym__expression, @@ -67025,7 +67210,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1982), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -67046,7 +67231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -67069,7 +67254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4342] = 21, + [4554] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -67082,11 +67267,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1655), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1980), 1, anon_sym_LPAREN2, - ACTIONS(2040), 1, + ACTIONS(2046), 1, anon_sym_RBRACK, - STATE(683), 1, + STATE(687), 1, sym_string_literal, STATE(887), 1, sym__expression, @@ -67108,7 +67293,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1982), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -67129,7 +67314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -67152,27 +67337,39 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4446] = 21, + [4658] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1655), 1, - anon_sym_sizeof, - ACTIONS(1930), 1, - anon_sym_LPAREN2, - ACTIONS(2042), 1, - anon_sym_RBRACK, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(887), 1, + STATE(1018), 1, sym__expression, + STATE(1685), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -67182,18 +67379,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1651), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1653), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1932), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -67212,12 +67397,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(844), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -67226,16 +67416,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [4550] = 21, + [4764] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -67248,11 +67434,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1655), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1980), 1, anon_sym_LPAREN2, - ACTIONS(2044), 1, + ACTIONS(2048), 1, anon_sym_RBRACK, - STATE(683), 1, + STATE(687), 1, sym_string_literal, STATE(887), 1, sym__expression, @@ -67274,7 +67460,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1982), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -67295,7 +67481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -67318,92 +67504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4654] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, - sym_identifier, - ACTIONS(1986), 1, - aux_sym_preproc_def_token1, - ACTIONS(1988), 1, - aux_sym_preproc_if_token1, - ACTIONS(1994), 1, - sym_preproc_directive, - ACTIONS(2046), 1, - aux_sym_preproc_if_token2, - STATE(795), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1295), 1, - sym__declaration_specifiers, - ACTIONS(1992), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(528), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [4762] = 21, + [4868] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -67416,11 +67517,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1655), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1980), 1, anon_sym_LPAREN2, - ACTIONS(2048), 1, + ACTIONS(2050), 1, anon_sym_RBRACK, - STATE(683), 1, + STATE(687), 1, sym_string_literal, STATE(887), 1, sym__expression, @@ -67442,7 +67543,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1982), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -67463,7 +67564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -67486,90 +67587,6 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4866] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1679), 1, - sym_identifier, - STATE(683), 1, - sym_string_literal, - STATE(1083), 1, - sym__expression, - STATE(1883), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(840), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, [4972] = 21, ACTIONS(3), 1, sym_comment, @@ -67583,11 +67600,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1655), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1980), 1, anon_sym_LPAREN2, - ACTIONS(2050), 1, + ACTIONS(2052), 1, anon_sym_RBRACK, - STATE(683), 1, + STATE(687), 1, sym_string_literal, STATE(887), 1, sym__expression, @@ -67609,7 +67626,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1982), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -67630,7 +67647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -67656,51 +67673,51 @@ static const uint16_t ts_small_parse_table[] = { [5076] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(1883), 1, + sym_identifier, + ACTIONS(1892), 1, + aux_sym_preproc_if_token2, + ACTIONS(1906), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(1909), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1912), 1, anon_sym___declspec, - ACTIONS(49), 1, + ACTIONS(1918), 1, sym_primitive_type, - ACTIONS(51), 1, + ACTIONS(1921), 1, anon_sym_enum, - ACTIONS(53), 1, + ACTIONS(1924), 1, anon_sym_struct, - ACTIONS(55), 1, + ACTIONS(1927), 1, anon_sym_union, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, - sym_identifier, - ACTIONS(2028), 1, + ACTIONS(2054), 1, aux_sym_preproc_def_token1, - ACTIONS(2030), 1, + ACTIONS(2057), 1, aux_sym_preproc_if_token1, - ACTIONS(2034), 1, + ACTIONS(2063), 1, sym_preproc_directive, - ACTIONS(2052), 1, - anon_sym_RBRACE, - STATE(795), 1, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1299), 1, + STATE(1295), 1, sym__declaration_specifiers, - ACTIONS(2032), 2, + ACTIONS(2060), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(43), 4, + ACTIONS(1915), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -67708,7 +67725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(534), 8, + STATE(543), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -67717,7 +67734,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(47), 9, + ACTIONS(1900), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -67727,7 +67744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(1903), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -67751,11 +67768,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1655), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1980), 1, anon_sym_LPAREN2, - ACTIONS(2054), 1, + ACTIONS(2066), 1, anon_sym_RBRACK, - STATE(683), 1, + STATE(687), 1, sym_string_literal, STATE(887), 1, sym__expression, @@ -67777,7 +67794,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1982), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -67798,7 +67815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -67836,11 +67853,11 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1018), 1, + STATE(1081), 1, sym__expression, - STATE(1685), 1, + STATE(1883), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -67881,13 +67898,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -67916,13 +67933,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1685), 1, anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1950), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(1952), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(736), 1, sym_string_literal, - STATE(963), 1, + STATE(969), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -67939,10 +67956,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1683), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1954), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 2, + ACTIONS(1956), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -67963,13 +67980,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(799), 5, + STATE(801), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -68000,11 +68017,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1364), 1, sym_identifier, - ACTIONS(1950), 1, + ACTIONS(1964), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(736), 1, sym_string_literal, - STATE(769), 1, + STATE(775), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -68021,10 +68038,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1356), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1954), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1954), 2, + ACTIONS(1966), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -68045,7 +68062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -68079,13 +68096,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1685), 1, anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1950), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(1952), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(736), 1, sym_string_literal, - STATE(961), 1, + STATE(971), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -68102,10 +68119,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1683), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1954), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 2, + ACTIONS(1956), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -68126,13 +68143,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(799), 5, + STATE(801), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -68161,14 +68178,14 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1685), 1, anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1950), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(1952), 1, anon_sym_LPAREN2, - STATE(727), 1, - sym__expression, - STATE(735), 1, + STATE(736), 1, sym_string_literal, + STATE(737), 1, + sym__expression, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -68184,10 +68201,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1683), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1954), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 2, + ACTIONS(1956), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -68208,13 +68225,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(799), 5, + STATE(801), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -68243,13 +68260,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1685), 1, anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1950), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(1952), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(736), 1, sym_string_literal, - STATE(964), 1, + STATE(959), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -68266,10 +68283,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1683), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1954), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 2, + ACTIONS(1956), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -68290,13 +68307,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(799), 5, + STATE(801), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -68325,13 +68342,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1685), 1, anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1950), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(1952), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(736), 1, sym_string_literal, - STATE(959), 1, + STATE(968), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -68348,10 +68365,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1683), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1954), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 2, + ACTIONS(1956), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -68372,13 +68389,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(799), 5, + STATE(801), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -68407,13 +68424,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1685), 1, anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1950), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(1952), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(736), 1, sym_string_literal, - STATE(966), 1, + STATE(967), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -68430,10 +68447,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1683), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1954), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 2, + ACTIONS(1956), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -68454,13 +68471,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(799), 5, + STATE(801), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -68489,13 +68506,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1685), 1, anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1950), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(1952), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(736), 1, sym_string_literal, - STATE(967), 1, + STATE(966), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -68512,10 +68529,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1683), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1954), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 2, + ACTIONS(1956), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -68536,13 +68553,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(799), 5, + STATE(801), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -68571,13 +68588,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1685), 1, anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1950), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(1952), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(736), 1, sym_string_literal, - STATE(960), 1, + STATE(965), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -68594,10 +68611,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1683), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1954), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 2, + ACTIONS(1956), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -68618,13 +68635,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(799), 5, + STATE(801), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -68653,13 +68670,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1685), 1, anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1950), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(1952), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(736), 1, sym_string_literal, - STATE(968), 1, + STATE(964), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -68676,10 +68693,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1683), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1954), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 2, + ACTIONS(1956), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -68700,13 +68717,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(799), 5, + STATE(801), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -68735,13 +68752,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1685), 1, anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1950), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(1952), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(736), 1, sym_string_literal, - STATE(969), 1, + STATE(960), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -68758,10 +68775,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1683), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1954), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 2, + ACTIONS(1956), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -68782,13 +68799,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(799), 5, + STATE(801), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -68817,13 +68834,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1685), 1, anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1950), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(1952), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(736), 1, sym_string_literal, - STATE(970), 1, + STATE(963), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -68840,10 +68857,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1683), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1954), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 2, + ACTIONS(1956), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -68864,13 +68881,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(799), 5, + STATE(801), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -68899,13 +68916,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1685), 1, anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1950), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(1952), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(736), 1, sym_string_literal, - STATE(971), 1, + STATE(962), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -68922,10 +68939,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1683), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1954), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 2, + ACTIONS(1956), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -68946,13 +68963,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(799), 5, + STATE(801), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -68985,9 +69002,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1757), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1101), 1, + STATE(1097), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -69007,7 +69024,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 2, + ACTIONS(1769), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -69028,13 +69045,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(895), 5, + STATE(894), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -69067,9 +69084,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1000), 1, + STATE(982), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -69110,13 +69127,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -69149,9 +69166,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(992), 1, + STATE(984), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -69192,13 +69209,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -69229,11 +69246,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1370), 1, anon_sym_sizeof, - ACTIONS(2056), 1, + ACTIONS(2068), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(736), 1, + STATE(728), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -69253,7 +69270,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1368), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1948), 2, + ACTIONS(1962), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -69274,7 +69291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -69312,9 +69329,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(737), 1, + STATE(724), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -69355,13 +69372,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -69392,11 +69409,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1370), 1, anon_sym_sizeof, - ACTIONS(1946), 1, + ACTIONS(1960), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(793), 1, + STATE(796), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -69416,7 +69433,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1368), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1948), 2, + ACTIONS(1962), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -69437,7 +69454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -69473,11 +69490,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1370), 1, anon_sym_sizeof, - ACTIONS(1946), 1, + ACTIONS(1960), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(733), 1, + STATE(732), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -69497,7 +69514,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1368), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1948), 2, + ACTIONS(1962), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -69518,7 +69535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -69554,11 +69571,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1364), 1, sym_identifier, - ACTIONS(1950), 1, + ACTIONS(1964), 1, anon_sym_LPAREN2, - STATE(723), 1, + STATE(725), 1, sym__expression, - STATE(735), 1, + STATE(736), 1, sym_string_literal, ACTIONS(89), 2, anon_sym_asm, @@ -69575,10 +69592,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1356), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1954), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1954), 2, + ACTIONS(1966), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -69599,7 +69616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -69635,11 +69652,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1370), 1, anon_sym_sizeof, - ACTIONS(1946), 1, + ACTIONS(1960), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(737), 1, + STATE(724), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -69659,7 +69676,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1368), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1948), 2, + ACTIONS(1962), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -69680,7 +69697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -69718,9 +69735,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1086), 1, + STATE(1111), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -69761,13 +69778,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -69798,11 +69815,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1370), 1, anon_sym_sizeof, - ACTIONS(1946), 1, + ACTIONS(1960), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(723), 1, + STATE(725), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -69822,7 +69839,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1368), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1948), 2, + ACTIONS(1962), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -69843,7 +69860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -69881,9 +69898,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1025), 1, + STATE(1023), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -69924,13 +69941,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -69963,7 +69980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(687), 1, sym_string_literal, STATE(1106), 1, sym__expression, @@ -70006,13 +70023,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -70041,13 +70058,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1685), 1, anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1950), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(1952), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(736), 1, sym_string_literal, - STATE(962), 1, + STATE(970), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -70064,10 +70081,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1683), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1954), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 2, + ACTIONS(1956), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -70088,13 +70105,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(799), 5, + STATE(801), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -70127,9 +70144,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(998), 1, + STATE(999), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70170,13 +70187,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -70197,34 +70214,22 @@ static const uint16_t ts_small_parse_table[] = { [8264] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1685), 1, + anon_sym_sizeof, + ACTIONS(1950), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1952), 1, + anon_sym_LPAREN2, + STATE(736), 1, sym_string_literal, - STATE(980), 1, + STATE(961), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -70234,6 +70239,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1681), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1683), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1954), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1956), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -70252,13 +70269,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(801), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -70279,22 +70296,34 @@ static const uint16_t ts_small_parse_table[] = { [8367] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1685), 1, - anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(735), 1, + STATE(687), 1, sym_string_literal, - STATE(965), 1, + STATE(979), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -70304,18 +70333,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1681), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1683), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1952), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1970), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -70334,13 +70351,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(799), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -70373,9 +70390,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(727), 1, + STATE(737), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70416,13 +70433,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -70455,9 +70472,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(977), 1, + STATE(972), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70498,13 +70515,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -70535,11 +70552,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1693), 1, anon_sym_sizeof, - ACTIONS(2058), 1, + ACTIONS(2070), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(885), 1, + STATE(883), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -70559,7 +70576,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 2, + ACTIONS(1769), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -70580,13 +70597,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(895), 5, + STATE(894), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -70619,7 +70636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1757), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, STATE(886), 1, sym__expression, @@ -70641,7 +70658,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 2, + ACTIONS(1769), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -70662,13 +70679,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(895), 5, + STATE(894), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -70701,9 +70718,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(976), 1, + STATE(975), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70744,13 +70761,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -70781,9 +70798,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1655), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1980), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, STATE(887), 1, sym__expression, @@ -70805,7 +70822,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1982), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -70826,7 +70843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -70864,9 +70881,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1757), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(890), 1, + STATE(888), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -70886,7 +70903,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 2, + ACTIONS(1769), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -70907,13 +70924,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(895), 5, + STATE(894), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -70946,9 +70963,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(974), 1, + STATE(1000), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70989,13 +71006,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -71028,9 +71045,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(985), 1, + STATE(993), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71071,13 +71088,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -71095,37 +71112,106 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9395] = 21, + [9395] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1360), 1, + anon_sym_sizeof, + ACTIONS(1364), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1964), 1, + anon_sym_LPAREN2, + STATE(736), 1, sym_string_literal, - STATE(973), 1, + STATE(777), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1354), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1356), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1954), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1966), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(708), 22, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_subscript_expression, + sym_call_expression, + sym_gnu_asm_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [9496] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1364), 1, + sym_identifier, + ACTIONS(1655), 1, + anon_sym_sizeof, + ACTIONS(1980), 1, + anon_sym_LPAREN2, + STATE(687), 1, + sym_string_literal, + STATE(868), 1, + sym__expression, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -71135,6 +71221,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1651), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1653), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1982), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -71153,17 +71251,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -71172,12 +71265,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9498] = 21, + [9597] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -71192,9 +71289,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1087), 1, + STATE(1110), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71235,13 +71332,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -71259,7 +71356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9601] = 20, + [9700] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -71272,9 +71369,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1364), 1, sym_identifier, - ACTIONS(1950), 1, + ACTIONS(1964), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(736), 1, sym_string_literal, STATE(763), 1, sym__expression, @@ -71293,10 +71390,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1356), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1954), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1954), 2, + ACTIONS(1966), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -71317,7 +71414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -71340,7 +71437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9702] = 21, + [9801] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -71355,9 +71452,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1757), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1079), 1, + STATE(1083), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -71377,7 +71474,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 2, + ACTIONS(1769), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -71398,13 +71495,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(895), 5, + STATE(894), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -71422,7 +71519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9805] = 21, + [9904] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -71437,9 +71534,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1096), 1, + STATE(1104), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71480,13 +71577,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -71504,7 +71601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9908] = 20, + [10007] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -71513,15 +71610,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, + ACTIONS(1360), 1, + anon_sym_sizeof, ACTIONS(1364), 1, sym_identifier, - ACTIONS(1655), 1, - anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1964), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(736), 1, sym_string_literal, - STATE(868), 1, + STATE(776), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -71532,16 +71629,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1651), 2, + ACTIONS(1354), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1653), 2, + ACTIONS(1356), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1954), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1966), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -71562,7 +71659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -71585,7 +71682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10009] = 20, + [10108] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -71598,11 +71695,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1364), 1, sym_identifier, - ACTIONS(1950), 1, + ACTIONS(1964), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(736), 1, sym_string_literal, - STATE(770), 1, + STATE(773), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -71619,10 +71716,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1356), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1954), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1954), 2, + ACTIONS(1966), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -71643,7 +71740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -71666,7 +71763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10110] = 20, + [10209] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -71679,11 +71776,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1364), 1, sym_identifier, - ACTIONS(1950), 1, + ACTIONS(1964), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(736), 1, sym_string_literal, - STATE(768), 1, + STATE(771), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -71700,10 +71797,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1356), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1954), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1954), 2, + ACTIONS(1966), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -71724,7 +71821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -71747,7 +71844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10211] = 20, + [10310] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -71760,11 +71857,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1364), 1, sym_identifier, - ACTIONS(1950), 1, + ACTIONS(1964), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(736), 1, sym_string_literal, - STATE(767), 1, + STATE(770), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -71781,10 +71878,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1356), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1954), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1954), 2, + ACTIONS(1966), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -71805,7 +71902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -71828,7 +71925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10312] = 20, + [10411] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -71841,11 +71938,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1364), 1, sym_identifier, - ACTIONS(1950), 1, + ACTIONS(1964), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(736), 1, sym_string_literal, - STATE(766), 1, + STATE(769), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -71862,10 +71959,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1356), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1954), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1954), 2, + ACTIONS(1966), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -71886,7 +71983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -71909,7 +72006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10413] = 20, + [10512] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -71922,11 +72019,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1364), 1, sym_identifier, - ACTIONS(1950), 1, + ACTIONS(1964), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(736), 1, sym_string_literal, - STATE(765), 1, + STATE(768), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -71943,10 +72040,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1356), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1954), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1954), 2, + ACTIONS(1966), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -71967,7 +72064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -71990,7 +72087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10514] = 21, + [10613] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72005,9 +72102,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1097), 1, + STATE(1095), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72048,13 +72145,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -72072,25 +72169,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10617] = 20, + [10716] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1950), 1, - anon_sym_LPAREN2, - STATE(735), 1, + STATE(687), 1, sym_string_literal, - STATE(771), 1, + STATE(992), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -72100,18 +72209,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1354), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1356), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1952), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1954), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -72130,12 +72227,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(844), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -72144,34 +72246,42 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10718] = 20, + [10819] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1950), 1, - anon_sym_LPAREN2, - STATE(735), 1, + STATE(687), 1, sym_string_literal, - STATE(772), 1, + STATE(991), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -72181,18 +72291,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1354), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1356), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1952), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1954), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -72211,12 +72309,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(844), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -72225,16 +72328,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10819] = 21, + [10922] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72249,9 +72348,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1019), 1, + STATE(1022), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72292,13 +72391,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -72316,7 +72415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10922] = 21, + [11025] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72331,9 +72430,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(990), 1, + STATE(973), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72374,13 +72473,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -72398,7 +72497,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11025] = 21, + [11128] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72413,9 +72512,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(972), 1, + STATE(986), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72456,13 +72555,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -72480,7 +72579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11128] = 20, + [11231] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -72493,11 +72592,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1655), 1, anon_sym_sizeof, - ACTIONS(2060), 1, + ACTIONS(2072), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(885), 1, + STATE(883), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -72517,7 +72616,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1982), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -72538,7 +72637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -72561,7 +72660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11229] = 20, + [11332] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -72574,9 +72673,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1655), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1980), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, STATE(886), 1, sym__expression, @@ -72598,7 +72697,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1982), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -72619,7 +72718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -72642,37 +72741,107 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11330] = 21, + [11433] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1687), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1693), 1, + anon_sym_sizeof, + ACTIONS(1757), 1, + anon_sym_LPAREN2, + STATE(687), 1, sym_string_literal, - STATE(987), 1, + STATE(1112), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1691), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1769), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(894), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(708), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [11536] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1364), 1, + sym_identifier, + ACTIONS(1655), 1, + anon_sym_sizeof, + ACTIONS(1980), 1, + anon_sym_LPAREN2, + STATE(687), 1, + sym_string_literal, + STATE(888), 1, + sym__expression, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -72682,6 +72851,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1651), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1653), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1982), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -72700,17 +72881,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -72719,12 +72895,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11433] = 20, + [11637] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -72737,11 +72917,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1655), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1980), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(890), 1, + STATE(871), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -72761,7 +72941,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1982), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -72782,7 +72962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -72805,7 +72985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11534] = 20, + [11738] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -72818,11 +72998,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1655), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1980), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(881), 1, + STATE(884), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -72842,7 +73022,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1982), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -72863,7 +73043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -72886,7 +73066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11635] = 20, + [11839] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -72899,11 +73079,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1655), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1980), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(882), 1, + STATE(873), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -72923,7 +73103,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1982), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -72944,7 +73124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -72967,7 +73147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11736] = 20, + [11940] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -72980,11 +73160,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1655), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1980), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(870), 1, + STATE(874), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -73004,7 +73184,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1982), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -73025,7 +73205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -73048,7 +73228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11837] = 20, + [12041] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -73061,11 +73241,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1655), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1980), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(871), 1, + STATE(875), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -73085,7 +73265,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1982), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -73106,7 +73286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -73129,7 +73309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11938] = 20, + [12142] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -73142,92 +73322,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1655), 1, anon_sym_sizeof, - ACTIONS(1930), 1, - anon_sym_LPAREN2, - STATE(683), 1, - sym_string_literal, - STATE(873), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1651), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1653), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1932), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(700), 22, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [12039] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1364), 1, - sym_identifier, - ACTIONS(1655), 1, - anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1980), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(874), 1, + STATE(876), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -73247,7 +73346,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1982), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -73268,7 +73367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -73291,7 +73390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12140] = 20, + [12243] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -73304,11 +73403,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1655), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1980), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(875), 1, + STATE(877), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -73328,7 +73427,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1982), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -73349,7 +73448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -73372,7 +73471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12241] = 20, + [12344] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -73385,11 +73484,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1655), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1980), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(876), 1, + STATE(878), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -73409,7 +73508,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1982), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -73430,7 +73529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -73453,7 +73552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12342] = 20, + [12445] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -73466,11 +73565,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1655), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1980), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(877), 1, + STATE(879), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -73490,7 +73589,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1982), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -73511,7 +73610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -73534,7 +73633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12443] = 20, + [12546] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -73547,11 +73646,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1655), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1980), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(878), 1, + STATE(880), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -73571,7 +73670,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1982), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -73592,7 +73691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -73615,7 +73714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12544] = 20, + [12647] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -73628,11 +73727,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1655), 1, anon_sym_sizeof, - ACTIONS(1930), 1, + ACTIONS(1980), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(879), 1, + STATE(869), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -73652,7 +73751,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1932), 2, + ACTIONS(1982), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -73673,7 +73772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -73696,88 +73795,6 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12645] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1687), 1, - sym_identifier, - ACTIONS(1693), 1, - anon_sym_sizeof, - ACTIONS(1757), 1, - anon_sym_LPAREN2, - STATE(683), 1, - sym_string_literal, - STATE(1059), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1689), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1691), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1767), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(895), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, [12748] = 21, ACTIONS(3), 1, sym_comment, @@ -73793,9 +73810,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1757), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1112), 1, + STATE(1055), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -73815,7 +73832,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 2, + ACTIONS(1769), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -73836,13 +73853,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(895), 5, + STATE(894), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -73873,11 +73890,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1364), 1, sym_identifier, - ACTIONS(1950), 1, + ACTIONS(1964), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(736), 1, sym_string_literal, - STATE(774), 1, + STATE(767), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -73894,10 +73911,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1356), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1954), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1954), 2, + ACTIONS(1966), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -73918,7 +73935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -73954,11 +73971,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1364), 1, sym_identifier, - ACTIONS(1950), 1, + ACTIONS(1964), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(736), 1, sym_string_literal, - STATE(777), 1, + STATE(765), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -73975,10 +73992,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1356), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1954), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1954), 2, + ACTIONS(1966), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -73999,7 +74016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -74025,22 +74042,34 @@ static const uint16_t ts_small_parse_table[] = { [13053] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1693), 1, - anon_sym_sizeof, - ACTIONS(1757), 1, - anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1050), 1, + STATE(1076), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -74050,18 +74079,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1689), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1691), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1767), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -74080,13 +74097,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(895), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -74107,34 +74124,22 @@ static const uint16_t ts_small_parse_table[] = { [13156] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1687), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1693), 1, + anon_sym_sizeof, + ACTIONS(1757), 1, + anon_sym_LPAREN2, + STATE(687), 1, sym_string_literal, - STATE(1021), 1, + STATE(1030), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -74144,6 +74149,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1689), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1691), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1769), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -74162,13 +74179,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(894), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -74187,88 +74204,6 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_null, [13259] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1687), 1, - sym_identifier, - ACTIONS(1693), 1, - anon_sym_sizeof, - ACTIONS(1757), 1, - anon_sym_LPAREN2, - STATE(683), 1, - sym_string_literal, - STATE(1063), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1689), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1691), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1767), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(895), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [13362] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74283,91 +74218,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1027), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(840), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [13465] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1679), 1, - sym_identifier, - STATE(683), 1, - sym_string_literal, - STATE(1103), 1, + STATE(1019), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74408,13 +74261,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -74432,7 +74285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13568] = 21, + [13362] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -74447,9 +74300,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1757), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1051), 1, + STATE(1056), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -74469,7 +74322,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 2, + ACTIONS(1769), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -74490,13 +74343,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(895), 5, + STATE(894), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -74514,7 +74367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13671] = 20, + [13465] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -74523,19 +74376,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1364), 1, - sym_identifier, - ACTIONS(1370), 1, + ACTIONS(1685), 1, anon_sym_sizeof, - ACTIONS(1946), 1, + ACTIONS(1950), 1, + sym_identifier, + ACTIONS(1952), 1, anon_sym_LPAREN2, - STATE(683), 1, - sym_string_literal, - STATE(797), 1, + STATE(724), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, + STATE(736), 1, + sym_string_literal, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -74545,13 +74395,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1366), 2, + ACTIONS(1681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1368), 2, + ACTIONS(1683), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1948), 2, + ACTIONS(1954), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1956), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -74572,12 +74425,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(801), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -74586,16 +74444,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13772] = 21, + [13568] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -74604,16 +74458,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1687), 1, - sym_identifier, - ACTIONS(1693), 1, + ACTIONS(1685), 1, anon_sym_sizeof, - ACTIONS(1757), 1, + ACTIONS(1950), 1, + sym_identifier, + ACTIONS(1952), 1, anon_sym_LPAREN2, - STATE(683), 1, - sym_string_literal, - STATE(1048), 1, + STATE(732), 1, sym__expression, + STATE(736), 1, + sym_string_literal, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -74623,16 +74477,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1689), 2, + ACTIONS(1681), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(1683), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, + ACTIONS(1954), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 2, + ACTIONS(1956), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -74653,13 +74507,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(895), 5, + STATE(801), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -74677,7 +74531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13875] = 21, + [13671] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -74692,9 +74546,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1757), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1045), 1, + STATE(1048), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -74714,7 +74568,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 2, + ACTIONS(1769), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -74735,13 +74589,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(895), 5, + STATE(894), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -74759,7 +74613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13978] = 21, + [13774] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -74768,16 +74622,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1687), 1, + ACTIONS(1364), 1, sym_identifier, - ACTIONS(1693), 1, + ACTIONS(1370), 1, anon_sym_sizeof, - ACTIONS(1757), 1, + ACTIONS(1960), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1036), 1, + STATE(798), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -74787,16 +74644,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1689), 2, + ACTIONS(1366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1691), 2, + ACTIONS(1368), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1767), 2, + ACTIONS(1962), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -74817,17 +74671,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(895), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -74836,12 +74685,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14081] = 21, + [13875] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -74856,9 +74709,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1757), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1030), 1, + STATE(1040), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -74878,7 +74731,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 2, + ACTIONS(1769), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -74899,13 +74752,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(895), 5, + STATE(894), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -74923,7 +74776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14184] = 21, + [13978] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -74938,9 +74791,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1757), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1040), 1, + STATE(1035), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -74960,7 +74813,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 2, + ACTIONS(1769), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -74981,13 +74834,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(895), 5, + STATE(894), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -75005,7 +74858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14287] = 21, + [14081] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -75020,9 +74873,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1757), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1053), 1, + STATE(1074), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -75042,7 +74895,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 2, + ACTIONS(1769), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -75063,13 +74916,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(895), 5, + STATE(894), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -75087,7 +74940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14390] = 21, + [14184] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -75102,9 +74955,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1757), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(868), 1, + STATE(1037), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -75124,7 +74977,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 2, + ACTIONS(1769), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -75145,13 +74998,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(895), 5, + STATE(894), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -75169,7 +75022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14493] = 21, + [14287] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -75184,9 +75037,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1757), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1061), 1, + STATE(1051), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -75206,7 +75059,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 2, + ACTIONS(1769), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -75227,13 +75080,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(895), 5, + STATE(894), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -75251,7 +75104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14596] = 21, + [14390] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -75266,9 +75119,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1757), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1066), 1, + STATE(1060), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -75288,7 +75141,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1767), 2, + ACTIONS(1769), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -75309,13 +75162,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(895), 5, + STATE(894), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -75333,7 +75186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14699] = 21, + [14493] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -75342,15 +75195,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1685), 1, - anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1687), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(1693), 1, + anon_sym_sizeof, + ACTIONS(1757), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(687), 1, sym_string_literal, - STATE(737), 1, + STATE(868), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -75361,16 +75214,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1681), 2, + ACTIONS(1689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(1691), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 2, + ACTIONS(1769), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -75391,13 +75244,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(799), 5, + STATE(894), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -75415,7 +75268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14802] = 21, + [14596] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -75424,16 +75277,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1685), 1, - anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1687), 1, sym_identifier, - ACTIONS(1968), 1, + ACTIONS(1693), 1, + anon_sym_sizeof, + ACTIONS(1757), 1, anon_sym_LPAREN2, - STATE(733), 1, - sym__expression, - STATE(735), 1, + STATE(687), 1, sym_string_literal, + STATE(1062), 1, + sym__expression, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -75443,16 +75296,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1681), 2, + ACTIONS(1689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(1691), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 2, + ACTIONS(1769), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -75473,13 +75326,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(799), 5, + STATE(894), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -75497,7 +75350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14905] = 21, + [14699] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -75506,15 +75359,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1685), 1, - anon_sym_sizeof, - ACTIONS(1966), 1, + ACTIONS(1687), 1, sym_identifier, - ACTIONS(2062), 1, + ACTIONS(1693), 1, + anon_sym_sizeof, + ACTIONS(1757), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(687), 1, sym_string_literal, - STATE(736), 1, + STATE(1066), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -75525,16 +75378,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1681), 2, + ACTIONS(1689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1683), 2, + ACTIONS(1691), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1970), 2, + ACTIONS(1769), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -75555,13 +75408,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(799), 5, + STATE(894), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -75579,37 +75432,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15008] = 21, + [14802] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1685), 1, + anon_sym_sizeof, + ACTIONS(1950), 1, sym_identifier, - STATE(683), 1, - sym_string_literal, - STATE(1074), 1, + ACTIONS(2074), 1, + anon_sym_LPAREN2, + STATE(728), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(736), 1, + sym_string_literal, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -75619,6 +75460,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1681), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1683), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1954), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1956), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -75637,13 +75490,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(801), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -75661,28 +75514,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15111] = 20, + [14905] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1364), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1370), 1, - anon_sym_sizeof, - ACTIONS(1946), 1, - anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(789), 1, + STATE(1087), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -75692,15 +75554,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1366), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1368), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1948), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -75719,12 +75572,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(844), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75733,16 +75591,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15212] = 21, + [15008] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75757,9 +75611,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(1020), 1, + STATE(1027), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75800,13 +75654,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -75824,7 +75678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15315] = 20, + [15111] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -75837,11 +75691,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1370), 1, anon_sym_sizeof, - ACTIONS(1946), 1, + ACTIONS(1960), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(727), 1, + STATE(787), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -75861,7 +75715,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1368), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1948), 2, + ACTIONS(1962), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -75882,7 +75736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -75905,7 +75759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15416] = 20, + [15212] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -75918,11 +75772,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1370), 1, anon_sym_sizeof, - ACTIONS(1946), 1, + ACTIONS(1960), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(790), 1, + STATE(737), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -75942,7 +75796,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1368), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1948), 2, + ACTIONS(1962), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -75963,7 +75817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -75986,7 +75840,89 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15517] = 20, + [15313] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1679), 1, + sym_identifier, + STATE(687), 1, + sym_string_literal, + STATE(1020), 1, + sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(844), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(708), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [15416] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -75999,11 +75935,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1370), 1, anon_sym_sizeof, - ACTIONS(1946), 1, + ACTIONS(1960), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(792), 1, + STATE(788), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -76023,7 +75959,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1368), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1948), 2, + ACTIONS(1962), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -76044,7 +75980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -76067,7 +76003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15618] = 20, + [15517] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -76080,11 +76016,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1370), 1, anon_sym_sizeof, - ACTIONS(1946), 1, + ACTIONS(1960), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(796), 1, + STATE(789), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -76104,7 +76040,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1368), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1948), 2, + ACTIONS(1962), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -76125,7 +76061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -76148,7 +76084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15719] = 20, + [15618] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -76161,11 +76097,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1370), 1, anon_sym_sizeof, - ACTIONS(1946), 1, + ACTIONS(1960), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(780), 1, + STATE(790), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -76185,7 +76121,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1368), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1948), 2, + ACTIONS(1962), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -76206,7 +76142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -76229,7 +76165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15820] = 20, + [15719] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -76242,11 +76178,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1370), 1, anon_sym_sizeof, - ACTIONS(1946), 1, + ACTIONS(1960), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(798), 1, + STATE(779), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -76266,7 +76202,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1368), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1948), 2, + ACTIONS(1962), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -76287,7 +76223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -76310,7 +76246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15921] = 20, + [15820] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -76323,11 +76259,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1370), 1, anon_sym_sizeof, - ACTIONS(1946), 1, + ACTIONS(1960), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(805), 1, + STATE(794), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -76347,7 +76283,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1368), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1948), 2, + ACTIONS(1962), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -76368,7 +76304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -76391,7 +76327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16022] = 20, + [15921] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -76404,11 +76340,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1370), 1, anon_sym_sizeof, - ACTIONS(1946), 1, + ACTIONS(1960), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(803), 1, + STATE(800), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -76428,7 +76364,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1368), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1948), 2, + ACTIONS(1962), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -76449,7 +76385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -76472,7 +76408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16123] = 20, + [16022] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -76485,11 +76421,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1370), 1, anon_sym_sizeof, - ACTIONS(1946), 1, + ACTIONS(1960), 1, anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(801), 1, + STATE(797), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -76509,7 +76445,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1368), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1948), 2, + ACTIONS(1962), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -76530,7 +76466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -76553,37 +76489,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16224] = 21, + [16123] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1364), 1, sym_identifier, - STATE(683), 1, + ACTIONS(1370), 1, + anon_sym_sizeof, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + STATE(687), 1, sym_string_literal, - STATE(1070), 1, + STATE(786), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -76593,6 +76520,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1366), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1368), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1962), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -76611,17 +76547,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76630,30 +76561,46 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16327] = 20, + [16224] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(1950), 1, - anon_sym_LPAREN2, - STATE(727), 1, - sym__expression, - STATE(735), 1, + STATE(687), 1, sym_string_literal, + STATE(1070), 1, + sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -76663,18 +76610,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1354), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1356), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1952), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1954), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -76693,12 +76628,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(844), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76707,16 +76647,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16428] = 20, + [16327] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -76729,9 +76665,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1364), 1, sym_identifier, - ACTIONS(1950), 1, + ACTIONS(1964), 1, anon_sym_LPAREN2, - STATE(735), 1, + STATE(736), 1, sym_string_literal, STATE(737), 1, sym__expression, @@ -76750,10 +76686,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1356), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1954), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1954), 2, + ACTIONS(1966), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -76774,7 +76710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -76797,37 +76733,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16529] = 21, + [16428] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1679), 1, + ACTIONS(1360), 1, + anon_sym_sizeof, + ACTIONS(1364), 1, sym_identifier, - STATE(683), 1, - sym_string_literal, - STATE(1098), 1, + ACTIONS(1964), 1, + anon_sym_LPAREN2, + STATE(724), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(736), 1, + sym_string_literal, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -76837,88 +76761,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(840), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(700), 17, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [16632] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1679), 1, - sym_identifier, - STATE(683), 1, - sym_string_literal, - STATE(1111), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1354), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1356), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1954), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1966), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -76937,17 +76791,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76956,12 +76805,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16735] = 20, + [16529] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -76974,11 +76827,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1364), 1, sym_identifier, - ACTIONS(1950), 1, + ACTIONS(1964), 1, anon_sym_LPAREN2, - STATE(733), 1, + STATE(732), 1, sym__expression, - STATE(735), 1, + STATE(736), 1, sym_string_literal, ACTIONS(89), 2, anon_sym_asm, @@ -76995,10 +76848,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1356), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1952), 2, + ACTIONS(1954), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1954), 2, + ACTIONS(1966), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -77019,7 +76872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(708), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -77042,25 +76895,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16836] = 20, + [16630] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1360), 1, - anon_sym_sizeof, - ACTIONS(1364), 1, + ACTIONS(1679), 1, sym_identifier, - ACTIONS(2064), 1, - anon_sym_LPAREN2, - STATE(735), 1, + STATE(687), 1, sym_string_literal, - STATE(736), 1, + STATE(1093), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -77070,18 +76935,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1354), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1356), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1952), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1954), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -77100,12 +76953,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(700), 22, + STATE(844), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77114,18 +76972,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16937] = 21, + [16733] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(85), 1, @@ -77136,11 +76992,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - ACTIONS(2066), 1, - anon_sym_LPAREN2, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(736), 1, + STATE(1098), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77181,13 +77035,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [16836] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1360), 1, + anon_sym_sizeof, + ACTIONS(1364), 1, + sym_identifier, + ACTIONS(2076), 1, + anon_sym_LPAREN2, + STATE(728), 1, + sym__expression, + STATE(736), 1, + sym_string_literal, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1354), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1356), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1954), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1966), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(708), 22, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_subscript_expression, + sym_call_expression, + sym_gnu_asm_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [16937] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1679), 1, + sym_identifier, + ACTIONS(2078), 1, + anon_sym_LPAREN2, + STATE(687), 1, + sym_string_literal, + STATE(728), 1, + sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(844), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -77220,9 +77237,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1679), 1, sym_identifier, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - STATE(733), 1, + STATE(732), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77263,13 +77280,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(840), 5, + STATE(844), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(700), 17, + STATE(708), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -77298,14 +77315,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1714), 1, anon_sym_EQ, - STATE(662), 1, + STATE(664), 1, sym_string_literal, - STATE(811), 1, + STATE(810), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(1720), 2, anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(2068), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -77364,9 +77381,9 @@ static const uint16_t ts_small_parse_table[] = { [17231] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2070), 1, + ACTIONS(2082), 1, sym_identifier, - STATE(665), 2, + STATE(668), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, ACTIONS(95), 5, @@ -77375,7 +77392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2074), 16, + ACTIONS(2086), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77392,7 +77409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2072), 33, + ACTIONS(2084), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77443,13 +77460,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1831), 1, sym_identifier, - ACTIONS(2076), 1, + ACTIONS(2088), 1, anon_sym_LBRACE, - STATE(742), 1, + STATE(747), 1, sym_ms_call_modifier, - STATE(795), 1, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, @@ -77464,7 +77481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -77477,7 +77494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -77506,92 +77523,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [17403] = 21, + [17403] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(2090), 1, sym_identifier, - ACTIONS(2078), 1, - anon_sym_LBRACE, - STATE(745), 1, - sym_ms_call_modifier, - STATE(795), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1154), 1, - sym__declaration_specifiers, - STATE(341), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(749), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [17504] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2080), 1, - sym_identifier, - STATE(666), 2, + STATE(662), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, ACTIONS(95), 5, @@ -77600,7 +77537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2084), 16, + ACTIONS(2094), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77617,7 +77554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2082), 33, + ACTIONS(2092), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77651,72 +77588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [17575] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2086), 1, - sym_identifier, - STATE(666), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(2093), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2091), 16, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2089), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [17646] = 21, + [17474] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -77733,19 +77605,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1831), 1, sym_identifier, ACTIONS(2096), 1, anon_sym_LBRACE, - STATE(743), 1, + STATE(748), 1, sym_ms_call_modifier, - STATE(795), 1, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1155), 1, + STATE(1156), 1, sym__declaration_specifiers, - STATE(385), 3, + STATE(412), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -77754,7 +77626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -77767,7 +77639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -77796,7 +77668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [17747] = 21, + [17575] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -77813,19 +77685,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1831), 1, sym_identifier, ACTIONS(2098), 1, anon_sym_LBRACE, - STATE(741), 1, + STATE(744), 1, sym_ms_call_modifier, - STATE(795), 1, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1156), 1, + STATE(1154), 1, sym__declaration_specifiers, - STATE(412), 3, + STATE(341), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -77834,7 +77706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -77847,7 +77719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -77876,18 +77748,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [17848] = 5, + [17676] = 21, ACTIONS(3), 1, sym_comment, - STATE(662), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1104), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1831), 1, + sym_identifier, + ACTIONS(2100), 1, + anon_sym_LBRACE, + STATE(741), 1, + sym_ms_call_modifier, + STATE(793), 1, + sym__type_specifier, + STATE(843), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1155), 1, + sym__declaration_specifiers, + STATE(385), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(750), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [17777] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2102), 1, + sym_identifier, + STATE(668), 2, sym_string_literal, - ACTIONS(95), 5, + aux_sym_concatenated_string_repeat1, + ACTIONS(2109), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1705), 17, + ACTIONS(2107), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77904,8 +77859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, anon_sym_DOT, - sym_identifier, - ACTIONS(1699), 33, + ACTIONS(2105), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77939,10 +77893,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [17916] = 3, + [17848] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2100), 17, + STATE(664), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1705), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77960,7 +77922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2102), 38, + ACTIONS(1699), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77994,15 +77956,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [17979] = 3, + [17916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 17, + ACTIONS(2112), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -78020,7 +77977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2106), 38, + ACTIONS(2114), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -78059,10 +78016,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [18042] = 3, + [17979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2108), 20, + ACTIONS(2116), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -78077,13 +78034,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2110), 34, + ACTIONS(2118), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -78099,9 +78053,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -78118,10 +78071,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18104] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [18042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2112), 20, + ACTIONS(2120), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -78142,7 +78100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2114), 34, + ACTIONS(2122), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -78177,10 +78135,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18166] = 3, + [18104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2116), 20, + ACTIONS(2124), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -78201,7 +78159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2118), 34, + ACTIONS(2126), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -78236,10 +78194,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18228] = 3, + [18166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2120), 20, + ACTIONS(2128), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -78260,7 +78218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2122), 34, + ACTIONS(2130), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -78295,10 +78253,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18290] = 3, + [18228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2124), 20, + ACTIONS(2132), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -78319,7 +78277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2126), 34, + ACTIONS(2134), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -78354,10 +78312,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18352] = 3, + [18290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2128), 20, + ACTIONS(2136), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -78378,7 +78336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2130), 34, + ACTIONS(2138), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -78413,10 +78371,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18414] = 3, + [18352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2132), 20, + ACTIONS(2140), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -78437,7 +78395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2134), 34, + ACTIONS(2142), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -78472,10 +78430,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18476] = 3, + [18414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2136), 20, + ACTIONS(2144), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -78496,7 +78454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2138), 34, + ACTIONS(2146), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -78531,10 +78489,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18538] = 3, + [18476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2140), 20, + ACTIONS(2148), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -78555,7 +78513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2142), 34, + ACTIONS(2150), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -78590,10 +78548,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18600] = 3, + [18538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2144), 20, + ACTIONS(2152), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -78614,7 +78572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2146), 34, + ACTIONS(2154), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -78649,131 +78607,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18662] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2158), 1, - anon_sym___attribute__, - ACTIONS(2161), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2164), 1, - anon_sym___declspec, - ACTIONS(2150), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(682), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(2152), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2155), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(2148), 17, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [18733] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2167), 1, - sym_identifier, - STATE(662), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2171), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2169), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [18798] = 3, + [18600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2173), 17, + ACTIONS(2156), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -78788,10 +78625,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2175), 34, + ACTIONS(2158), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -78807,9 +78647,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -78826,10 +78666,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18857] = 3, + [18662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 21, + ACTIONS(2162), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -78851,7 +78691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2173), 30, + ACTIONS(2160), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -78882,7 +78722,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [18916] = 3, + [18721] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2160), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2162), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [18780] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1677), 21, @@ -78938,7 +78834,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [18975] = 3, + [18839] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2174), 1, + anon_sym___attribute__, + ACTIONS(2177), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2180), 1, + anon_sym___declspec, + ACTIONS(2166), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(685), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2168), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2171), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(2164), 17, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [18910] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1673), 21, @@ -78994,6 +78952,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, + [18969] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2183), 1, + sym_identifier, + STATE(664), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2187), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2185), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, [19034] = 20, ACTIONS(3), 1, sym_comment, @@ -79009,21 +79026,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(129), 1, + ACTIONS(371), 1, anon_sym_LBRACE, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1831), 1, sym_identifier, - STATE(141), 1, + STATE(398), 1, sym_compound_statement, - STATE(795), 1, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, STATE(1142), 1, sym__declaration_specifiers, - STATE(734), 2, + STATE(700), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -79031,13 +79048,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79066,7 +79083,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19126] = 20, + [19126] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2189), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2191), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [19184] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2193), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2195), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [19242] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2197), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2199), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [19300] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -79087,9 +79269,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, ACTIONS(1747), 1, anon_sym_RPAREN, - ACTIONS(1819), 1, + ACTIONS(1831), 1, sym_identifier, - STATE(795), 1, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, @@ -79103,13 +79285,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(750), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [19392] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1104), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1831), 1, + sym_identifier, + STATE(426), 1, + sym_compound_statement, + STATE(793), 1, + sym__type_specifier, + STATE(843), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1142), 1, + sym__declaration_specifiers, + STATE(735), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79138,7 +79392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19218] = 20, + [19484] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -79157,11 +79411,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1831), 1, sym_identifier, STATE(431), 1, sym_compound_statement, - STATE(795), 1, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, @@ -79175,13 +79429,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79210,7 +79464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19310] = 20, + [19576] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -79229,17 +79483,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1831), 1, sym_identifier, STATE(346), 1, sym_compound_statement, - STATE(795), 1, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, STATE(1142), 1, sym__declaration_specifiers, - STATE(734), 2, + STATE(735), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -79247,13 +79501,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79282,10 +79536,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19402] = 3, + [19668] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2201), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2203), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [19726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2177), 17, + ACTIONS(2205), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79303,7 +79612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2179), 33, + ACTIONS(2207), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79337,7 +79646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [19460] = 20, + [19784] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -79352,35 +79661,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(371), 1, - anon_sym_LBRACE, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1745), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2209), 1, sym_identifier, - STATE(398), 1, - sym_compound_statement, - STATE(795), 1, + ACTIONS(2211), 1, + anon_sym_RPAREN, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, + STATE(1184), 1, sym__declaration_specifiers, - STATE(694), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, + STATE(1506), 1, + sym_variadic_parameter, + STATE(1670), 1, + sym_parameter_declaration, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79409,7 +79719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19552] = 20, + [19878] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -79424,21 +79734,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(371), 1, + ACTIONS(423), 1, anon_sym_LBRACE, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1831), 1, sym_identifier, - STATE(388), 1, + STATE(325), 1, sym_compound_statement, - STATE(795), 1, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, STATE(1142), 1, sym__declaration_specifiers, - STATE(734), 2, + STATE(705), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -79446,13 +79756,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79481,7 +79791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19644] = 20, + [19970] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -79496,21 +79806,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(423), 1, + ACTIONS(371), 1, anon_sym_LBRACE, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1831), 1, sym_identifier, - STATE(325), 1, + STATE(388), 1, sym_compound_statement, - STATE(795), 1, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, STATE(1142), 1, sym__declaration_specifiers, - STATE(712), 2, + STATE(735), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -79518,13 +79828,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79553,10 +79863,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19736] = 3, + [20062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2181), 17, + ACTIONS(2213), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79574,7 +79884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2183), 33, + ACTIONS(2215), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79608,10 +79918,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [19794] = 3, + [20120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2185), 17, + ACTIONS(2217), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79629,7 +79939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2187), 33, + ACTIONS(2219), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79663,7 +79973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [19852] = 20, + [20178] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -79678,21 +79988,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(423), 1, + ACTIONS(129), 1, anon_sym_LBRACE, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1831), 1, sym_identifier, - STATE(310), 1, + STATE(140), 1, sym_compound_statement, - STATE(795), 1, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, STATE(1142), 1, sym__declaration_specifiers, - STATE(734), 2, + STATE(716), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -79700,13 +80010,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79735,100 +80045,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19944] = 20, + [20270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(129), 1, - anon_sym_LBRACE, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, - sym_identifier, - STATE(140), 1, - sym_compound_statement, - STATE(795), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, - sym__declaration_specifiers, - STATE(688), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [20036] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2189), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2221), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2191), 33, + ACTIONS(2223), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79862,15 +80100,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [20094] = 20, + [20328] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(41), 1, - anon_sym_LBRACE, ACTIONS(49), 1, sym_primitive_type, ACTIONS(51), 1, @@ -79879,19 +80115,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, + ACTIONS(423), 1, + anon_sym_LBRACE, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1831), 1, sym_identifier, - STATE(426), 1, + STATE(383), 1, sym_compound_statement, - STATE(795), 1, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, STATE(1142), 1, sym__declaration_specifiers, - STATE(734), 2, + STATE(735), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -79899,13 +80137,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79934,10 +80172,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20186] = 3, + [20420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 17, + ACTIONS(2225), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79955,7 +80193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2195), 33, + ACTIONS(2227), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79989,82 +80227,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [20244] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(129), 1, - anon_sym_LBRACE, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, - sym_identifier, - STATE(138), 1, - sym_compound_statement, - STATE(795), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, - sym__declaration_specifiers, - STATE(708), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [20336] = 3, + [20478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 17, + ACTIONS(2229), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80082,7 +80248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2199), 33, + ACTIONS(2231), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80116,10 +80282,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [20394] = 3, + [20536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2201), 17, + ACTIONS(2233), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80137,7 +80303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2203), 33, + ACTIONS(2235), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80171,7 +80337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [20452] = 21, + [20594] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -80186,36 +80352,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, + ACTIONS(129), 1, + anon_sym_LBRACE, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1745), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2205), 1, + ACTIONS(1831), 1, sym_identifier, - ACTIONS(2207), 1, - anon_sym_RPAREN, - STATE(795), 1, + STATE(147), 1, + sym_compound_statement, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1184), 1, + STATE(1142), 1, sym__declaration_specifiers, - STATE(1506), 1, - sym_variadic_parameter, - STATE(1670), 1, - sym_parameter_declaration, + STATE(735), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80244,7 +80409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20546] = 20, + [20686] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -80263,17 +80428,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1831), 1, sym_identifier, - STATE(411), 1, + STATE(417), 1, sym_compound_statement, - STATE(795), 1, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, STATE(1142), 1, sym__declaration_specifiers, - STATE(701), 2, + STATE(735), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -80281,13 +80446,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80316,13 +80481,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20638] = 20, + [20778] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, + ACTIONS(41), 1, + anon_sym_LBRACE, ACTIONS(49), 1, sym_primitive_type, ACTIONS(51), 1, @@ -80331,21 +80498,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(129), 1, - anon_sym_LBRACE, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1831), 1, sym_identifier, - STATE(147), 1, + STATE(413), 1, sym_compound_statement, - STATE(795), 1, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, STATE(1142), 1, sym__declaration_specifiers, - STATE(734), 2, + STATE(693), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -80353,13 +80518,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80388,7 +80553,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20730] = 20, + [20870] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2237), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2239), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [20928] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2241), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2243), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [20986] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2245), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2247), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [21044] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2249), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2251), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [21102] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -80403,21 +80788,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(371), 1, + ACTIONS(129), 1, anon_sym_LBRACE, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1831), 1, sym_identifier, - STATE(381), 1, + STATE(141), 1, sym_compound_statement, - STATE(795), 1, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, STATE(1142), 1, sym__declaration_specifiers, - STATE(691), 2, + STATE(735), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -80425,13 +80810,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80460,15 +80845,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20822] = 20, + [21194] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(41), 1, - anon_sym_LBRACE, ACTIONS(49), 1, sym_primitive_type, ACTIONS(51), 1, @@ -80477,19 +80860,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, + ACTIONS(371), 1, + anon_sym_LBRACE, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1831), 1, sym_identifier, - STATE(417), 1, + STATE(381), 1, sym_compound_statement, - STATE(795), 1, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, STATE(1142), 1, sym__declaration_specifiers, - STATE(734), 2, + STATE(695), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -80497,13 +80882,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80532,10 +80917,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20914] = 3, + [21286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 17, + ACTIONS(2253), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80553,7 +80938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2211), 33, + ACTIONS(2255), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80587,7 +80972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [20972] = 20, + [21344] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -80602,21 +80987,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(423), 1, + ACTIONS(129), 1, anon_sym_LBRACE, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1831), 1, sym_identifier, - STATE(383), 1, + STATE(138), 1, sym_compound_statement, - STATE(795), 1, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, STATE(1142), 1, sym__declaration_specifiers, - STATE(734), 2, + STATE(709), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -80624,13 +81009,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80659,7 +81044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [21064] = 20, + [21436] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -80678,17 +81063,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1831), 1, sym_identifier, STATE(333), 1, sym_compound_statement, - STATE(795), 1, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, STATE(1142), 1, sym__declaration_specifiers, - STATE(698), 2, + STATE(721), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -80696,13 +81081,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80731,48 +81116,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [21156] = 3, + [21528] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2213), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(33), 1, anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(423), 1, + anon_sym_LBRACE, + ACTIONS(1104), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1831), 1, sym_identifier, - ACTIONS(2215), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, + STATE(310), 1, + sym_compound_statement, + STATE(793), 1, + sym__type_specifier, + STATE(843), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1142), 1, + sym__declaration_specifiers, + STATE(735), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(750), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [21620] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + anon_sym_EQ, + STATE(664), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2259), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -80783,13 +81212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [21214] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2217), 17, + ACTIONS(1705), 14, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80803,14 +81226,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, sym_identifier, - ACTIONS(2219), 33, - anon_sym_DOT_DOT_DOT, + ACTIONS(1699), 18, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -80822,29 +81240,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT, anon_sym_DASH_GT, - [21272] = 3, + [21685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 17, + ACTIONS(2263), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(2261), 40, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + [21742] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2269), 1, + anon_sym_LPAREN2, + ACTIONS(2271), 1, + anon_sym_LBRACK, + STATE(707), 1, + sym_argument_list, + ACTIONS(2273), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2265), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80860,17 +81328,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, - anon_sym_DOT, sym_identifier, - ACTIONS(2223), 33, - anon_sym_DOT_DOT_DOT, + ACTIONS(2267), 28, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -80879,8 +81344,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -80895,11 +81358,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [21330] = 3, + [21807] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2225), 17, + ACTIONS(2269), 1, + anon_sym_LPAREN2, + ACTIONS(2271), 1, + anon_sym_LBRACK, + STATE(707), 1, + sym_argument_list, + ACTIONS(2273), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2275), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80915,17 +81389,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, - anon_sym_DOT, sym_identifier, - ACTIONS(2227), 33, - anon_sym_DOT_DOT_DOT, + ACTIONS(2277), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -80934,8 +81405,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -80948,13 +81417,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [21388] = 3, + [21874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2229), 17, + ACTIONS(2281), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80970,10 +81436,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, - anon_sym_DOT, sym_identifier, - ACTIONS(2231), 33, - anon_sym_DOT_DOT_DOT, + ACTIONS(2283), 33, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -80988,9 +81452,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -81005,11 +81469,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT, anon_sym_DASH_GT, - [21446] = 3, + [21931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2233), 17, + ACTIONS(2285), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81025,10 +81490,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, - anon_sym_DOT, sym_identifier, - ACTIONS(2235), 33, - anon_sym_DOT_DOT_DOT, + ACTIONS(2287), 33, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -81043,9 +81506,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -81060,11 +81523,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT, anon_sym_DASH_GT, - [21504] = 3, + [21988] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2237), 17, + ACTIONS(2269), 1, + anon_sym_LPAREN2, + ACTIONS(2271), 1, + anon_sym_LBRACK, + STATE(707), 1, + sym_argument_list, + ACTIONS(2273), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2289), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81080,17 +81556,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, - anon_sym_DOT, sym_identifier, - ACTIONS(2239), 33, - anon_sym_DOT_DOT_DOT, + ACTIONS(2291), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -81099,8 +81572,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -81113,13 +81584,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [21562] = 3, + [22055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2241), 17, + ACTIONS(2293), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81135,10 +81603,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, - anon_sym_DOT, sym_identifier, - ACTIONS(2243), 33, - anon_sym_DOT_DOT_DOT, + ACTIONS(2295), 33, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -81153,9 +81619,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -81170,23 +81636,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT, anon_sym_DASH_GT, - [21620] = 8, + [22112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2245), 16, + ACTIONS(2297), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81203,13 +81658,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2247), 26, + ACTIONS(2299), 33, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -81217,7 +81673,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -81230,22 +81688,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21687] = 8, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [22169] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1104), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1745), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2301), 1, + sym_identifier, + STATE(793), 1, + sym__type_specifier, + STATE(843), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1184), 1, + sym__declaration_specifiers, + STATE(1715), 1, + sym_parameter_declaration, + STATE(1773), 1, + sym_variadic_parameter, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(750), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [22260] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2257), 16, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2303), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81262,7 +81795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2259), 26, + ACTIONS(2305), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -81289,10 +81822,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21754] = 3, + [22327] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2261), 16, + ACTIONS(2269), 1, + anon_sym_LPAREN2, + ACTIONS(2271), 1, + anon_sym_LBRACK, + STATE(707), 1, + sym_argument_list, + ACTIONS(2273), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2307), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81309,14 +81854,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2263), 33, + ACTIONS(2309), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -81324,9 +81868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -81339,11 +81881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [21811] = 19, + [22394] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -81362,9 +81900,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1745), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1819), 1, + ACTIONS(1831), 1, sym_identifier, - STATE(795), 1, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, @@ -81378,13 +81916,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81413,10 +81951,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [21900] = 3, + [22483] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2265), 16, + ACTIONS(2311), 1, + sym_identifier, + ACTIONS(2320), 1, + anon_sym___attribute__, + ACTIONS(2323), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2326), 1, + anon_sym___declspec, + ACTIONS(2329), 1, + anon_sym_LBRACE, + ACTIONS(2334), 1, + sym_primitive_type, + ACTIONS(2337), 1, + anon_sym_enum, + ACTIONS(2340), 1, + anon_sym_struct, + ACTIONS(2343), 1, + anon_sym_union, + STATE(793), 1, + sym__type_specifier, + STATE(843), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1142), 1, + sym__declaration_specifiers, + STATE(735), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(2331), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(750), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2314), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2317), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [22572] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(664), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2187), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81430,12 +82046,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2267), 33, + ACTIONS(2185), 28, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -81447,11 +82061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81467,22 +82077,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [21957] = 8, + [22633] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2269), 16, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2346), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81499,7 +82109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2271), 26, + ACTIONS(2348), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -81526,12 +82136,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22024] = 7, + [22700] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2273), 1, + ACTIONS(1714), 1, anon_sym_EQ, - STATE(662), 1, + STATE(664), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -81539,7 +82149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2275), 10, + ACTIONS(1718), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -81550,8 +82160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1705), 14, - aux_sym_preproc_elif_token1, + ACTIONS(1705), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -81564,13 +82173,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - sym_identifier, - ACTIONS(1699), 18, + ACTIONS(1699), 19, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81578,67 +82183,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [22089] = 3, + [22764] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2277), 16, - aux_sym_preproc_elif_token1, + ACTIONS(2357), 1, + anon_sym_static, + STATE(739), 2, + sym_type_qualifier, + aux_sym_array_declarator_repeat1, + ACTIONS(2354), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2350), 17, anon_sym_DASH, anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(2352), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - sym_identifier, - ACTIONS(2279), 33, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_RBRACK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [22146] = 20, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [22826] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -81655,32 +82266,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1745), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2281), 1, + ACTIONS(1831), 1, sym_identifier, - STATE(795), 1, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1184), 1, + STATE(1229), 1, sym__declaration_specifiers, - STATE(1715), 1, - sym_parameter_declaration, - STATE(1773), 1, - sym_variadic_parameter, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81709,215 +82314,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [22237] = 3, + [22908] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2285), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(2283), 40, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(33), 1, anon_sym___attribute__, + ACTIONS(37), 1, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, + ACTIONS(49), 1, sym_primitive_type, + ACTIONS(51), 1, anon_sym_enum, + ACTIONS(53), 1, anon_sym_struct, + ACTIONS(55), 1, anon_sym_union, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - [22294] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2287), 16, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - sym_identifier, - ACTIONS(2289), 33, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [22351] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2291), 16, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - sym_identifier, - ACTIONS(2293), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [22418] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2295), 1, - sym_identifier, - ACTIONS(2304), 1, - anon_sym___attribute__, - ACTIONS(2307), 1, + ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2310), 1, - anon_sym___declspec, - ACTIONS(2313), 1, - anon_sym_LBRACE, - ACTIONS(2318), 1, - sym_primitive_type, - ACTIONS(2321), 1, - anon_sym_enum, - ACTIONS(2324), 1, - anon_sym_struct, - ACTIONS(2327), 1, - anon_sym_union, - STATE(795), 1, + ACTIONS(1831), 1, + sym_identifier, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1142), 1, + STATE(1273), 1, sym__declaration_specifiers, - STATE(734), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(2315), 4, + ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81925,7 +82358,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2298), 9, + ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -81935,7 +82368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2301), 10, + ACTIONS(45), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -81946,291 +82379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [22507] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(662), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2171), 15, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - sym_identifier, - ACTIONS(2169), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [22568] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2330), 16, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - sym_identifier, - ACTIONS(2332), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [22635] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2334), 16, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - sym_identifier, - ACTIONS(2336), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [22700] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1714), 1, - anon_sym_EQ, - STATE(662), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1718), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1705), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1699), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [22764] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(739), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2342), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2338), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(2340), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [22823] = 17, + [22990] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -82247,26 +82396,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1831), 1, sym_identifier, - STATE(795), 1, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1245), 1, + STATE(1228), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -82295,7 +82444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [22905] = 17, + [23072] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -82312,26 +82461,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1831), 1, sym_identifier, - STATE(795), 1, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1272), 1, + STATE(1226), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -82360,7 +82509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [22987] = 17, + [23154] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -82377,26 +82526,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1831), 1, sym_identifier, - STATE(795), 1, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1271), 1, + STATE(1270), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -82425,7 +82574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23069] = 17, + [23236] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -82442,26 +82591,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1831), 1, sym_identifier, - STATE(795), 1, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1273), 1, + STATE(1245), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -82490,52 +82639,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23151] = 17, + [23318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, - sym_identifier, - STATE(795), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1228), 1, - sym__declaration_specifiers, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(749), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, + ACTIONS(2362), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2360), 27, + anon_sym_DASH, + anon_sym_PLUS, anon_sym___extension__, + anon_sym_static, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -82544,18 +82675,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [23233] = 17, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [23372] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -82572,26 +82707,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1831), 1, sym_identifier, - STATE(795), 1, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1270), 1, + STATE(1271), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -82620,7 +82755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23315] = 17, + [23454] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -82637,26 +82772,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1831), 1, sym_identifier, - STATE(795), 1, + STATE(793), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1226), 1, + STATE(1272), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(750), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -82685,7 +82820,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23397] = 17, + [23536] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2368), 1, + anon_sym_LBRACE, + STATE(783), 1, + sym_field_declaration_list, + STATE(823), 1, + sym_attribute_specifier, + ACTIONS(2366), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2364), 34, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [23597] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -82702,26 +82891,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, + ACTIONS(1831), 1, sym_identifier, - STATE(795), 1, + STATE(799), 1, sym__type_specifier, STATE(843), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1229), 1, - sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(749), 7, + STATE(685), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -82750,14 +82937,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23479] = 8, + [23676] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1714), 1, anon_sym_EQ, ACTIONS(1723), 1, anon_sym_COLON, - STATE(662), 1, + STATE(664), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -82805,131 +82992,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23542] = 16, + [23739] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1819), 1, - sym_identifier, - STATE(787), 1, - sym__type_specifier, - STATE(843), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(682), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [23621] = 3, + ACTIONS(1714), 1, + anon_sym_EQ, + ACTIONS(1741), 1, + anon_sym_COLON, + STATE(664), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1718), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1705), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1699), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [23802] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2347), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1714), 1, + anon_sym_EQ, + ACTIONS(1725), 1, + anon_sym_COLON, + STATE(664), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1718), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1705), 12, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_RBRACK, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1699), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, + anon_sym_DOT, + anon_sym_DASH_GT, + [23865] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1714), 1, + anon_sym_EQ, + ACTIONS(2370), 1, + anon_sym_COLON, + STATE(664), 1, + sym_string_literal, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2345), 26, + ACTIONS(1718), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1705), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [23674] = 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1699), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [23928] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2353), 1, + ACTIONS(2368), 1, anon_sym_LBRACE, - STATE(779), 1, + STATE(804), 1, sym_field_declaration_list, - STATE(830), 1, + STATE(839), 1, sym_attribute_specifier, - ACTIONS(2351), 7, + ACTIONS(2374), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82937,7 +83176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2349), 34, + ACTIONS(2372), 34, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -82972,18 +83211,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [23735] = 7, + [23989] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2353), 1, + ACTIONS(2368), 1, anon_sym_LBRACE, - STATE(784), 1, + STATE(805), 1, sym_field_declaration_list, - STATE(807), 1, + STATE(818), 1, sym_attribute_specifier, - ACTIONS(2357), 7, + ACTIONS(2378), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82991,7 +83230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2355), 34, + ACTIONS(2376), 34, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -83026,14 +83265,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [23796] = 8, + [24050] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1714), 1, anon_sym_EQ, - ACTIONS(1716), 1, + ACTIONS(1739), 1, anon_sym_COLON, - STATE(662), 1, + STATE(664), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -83081,21 +83320,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23859] = 3, + [24113] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2361), 7, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2368), 1, + anon_sym_LBRACE, + STATE(782), 1, + sym_field_declaration_list, + STATE(829), 1, + sym_attribute_specifier, + ACTIONS(2382), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2359), 38, + anon_sym_COLON, + ACTIONS(2380), 34, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -83127,14 +83373,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [23912] = 3, + [24174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2347), 7, + ACTIONS(2362), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83142,7 +83385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2345), 38, + ACTIONS(2360), 38, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -83181,82 +83424,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23965] = 7, + [24227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2353), 1, - anon_sym_LBRACE, - STATE(786), 1, - sym_field_declaration_list, - STATE(828), 1, - sym_attribute_specifier, - ACTIONS(2365), 7, + ACTIONS(2386), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2363), 34, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [24026] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2353), 1, anon_sym_LBRACE, - STATE(804), 1, - sym_field_declaration_list, - STATE(838), 1, - sym_attribute_specifier, - ACTIONS(2369), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2367), 34, + ACTIONS(2384), 38, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -83288,15 +83470,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [24087] = 8, + [24280] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1714), 1, anon_sym_EQ, - ACTIONS(1727), 1, + ACTIONS(1716), 1, anon_sym_COLON, - STATE(662), 1, + STATE(664), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -83344,191 +83529,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [24150] = 8, + [24343] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1714), 1, - anon_sym_EQ, - ACTIONS(2371), 1, - anon_sym_COLON, - STATE(662), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1718), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1705), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1699), 15, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2368), 1, + anon_sym_LBRACE, + STATE(780), 1, + sym_field_declaration_list, + STATE(826), 1, + sym_attribute_specifier, + ACTIONS(2390), 7, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [24213] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1714), 1, - anon_sym_EQ, - ACTIONS(1725), 1, - anon_sym_COLON, - STATE(662), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1718), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1705), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1699), 15, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [24276] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1714), 1, - anon_sym_EQ, - ACTIONS(1741), 1, - anon_sym_COLON, - STATE(662), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1718), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1705), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1699), 15, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [24339] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2353), 1, - anon_sym_LBRACE, - STATE(802), 1, - sym_field_declaration_list, - STATE(817), 1, - sym_attribute_specifier, - ACTIONS(2375), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2373), 34, + ACTIONS(2388), 34, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -83563,161 +83583,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [24400] = 9, + [24404] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2377), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2269), 11, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2271), 23, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, + ACTIONS(2396), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_identifier, - [24464] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2379), 1, - anon_sym_EQ, - STATE(662), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2381), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1705), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2398), 1, anon_sym_PIPE, + ACTIONS(2400), 1, anon_sym_CARET, + ACTIONS(2402), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + STATE(707), 1, + sym_argument_list, + ACTIONS(2273), 2, anon_sym_DOT, - ACTIONS(1699), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [24524] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2383), 2, + ACTIONS(2346), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2392), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2385), 2, + ACTIONS(2404), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2406), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2387), 2, + ACTIONS(2408), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2389), 2, + ACTIONS(2410), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 3, + ACTIONS(2394), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2269), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2271), 21, + ACTIONS(2348), 18, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -83730,116 +83647,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [24596] = 14, + [24486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2414), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2383), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2385), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2387), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2389), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2391), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2377), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2269), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2271), 19, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2412), 38, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [24670] = 15, + [24538] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2393), 1, + ACTIONS(2396), 1, + anon_sym_AMP_AMP, + ACTIONS(2398), 1, + anon_sym_PIPE, + ACTIONS(2400), 1, + anon_sym_CARET, + ACTIONS(2402), 1, anon_sym_AMP, - STATE(720), 1, + ACTIONS(2420), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2422), 1, + anon_sym_QMARK, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2383), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2392), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2385), 2, + ACTIONS(2404), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2406), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2387), 2, + ACTIONS(2408), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2389), 2, + ACTIONS(2410), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2391), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2377), 3, + ACTIONS(2418), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2394), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2269), 4, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2271), 19, + ACTIONS(2416), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -83851,57 +83762,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [24746] = 16, + [24624] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1677), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(1675), 38, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [24676] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2393), 1, - anon_sym_AMP, - ACTIONS(2395), 1, + ACTIONS(2396), 1, + anon_sym_AMP_AMP, + ACTIONS(2398), 1, + anon_sym_PIPE, + ACTIONS(2400), 1, anon_sym_CARET, - STATE(720), 1, + ACTIONS(2402), 1, + anon_sym_AMP, + ACTIONS(2420), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2422), 1, + anon_sym_QMARK, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2383), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2392), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2385), 2, + ACTIONS(2404), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2406), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2387), 2, + ACTIONS(2408), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2389), 2, + ACTIONS(2410), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2391), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2269), 3, + ACTIONS(2426), 2, aux_sym_preproc_elif_token1, - anon_sym_PIPE, anon_sym_EQ, - ACTIONS(2377), 3, + ACTIONS(2394), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2271), 19, + ACTIONS(2424), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -83913,50 +83877,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [24824] = 17, + [24762] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2393), 1, - anon_sym_AMP, - ACTIONS(2395), 1, - anon_sym_CARET, - ACTIONS(2397), 1, - anon_sym_PIPE, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2269), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2383), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2392), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2385), 2, + ACTIONS(2394), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2346), 9, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2387), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2389), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2391), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2377), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2271), 19, + anon_sym_EQ, + ACTIONS(2348), 23, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -83964,6 +83917,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -83976,58 +83933,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [24904] = 18, + [24828] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2393), 1, - anon_sym_AMP, - ACTIONS(2395), 1, - anon_sym_CARET, - ACTIONS(2397), 1, - anon_sym_PIPE, - ACTIONS(2399), 1, - anon_sym_AMP_AMP, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2269), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2383), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2392), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2385), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2387), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2389), 2, + ACTIONS(2410), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2391), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2377), 3, + ACTIONS(2394), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2271), 18, + ACTIONS(2346), 7, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(2348), 23, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -84040,40 +83990,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [24986] = 11, + [24896] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2383), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2392), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2389), 2, + ACTIONS(2406), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2408), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2410), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2377), 3, + ACTIONS(2394), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2269), 7, + ACTIONS(2346), 5, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, anon_sym_EQ, - ACTIONS(2271), 23, + ACTIONS(2348), 21, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -84083,8 +84037,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -84097,39 +84049,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [25054] = 10, + [24968] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2383), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2392), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2377), 3, + ACTIONS(2404), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2406), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2408), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2410), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2394), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2269), 9, + ACTIONS(2346), 5, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2271), 23, + ACTIONS(2348), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -84137,10 +84097,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -84153,7 +84109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [25120] = 3, + [25042] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1673), 6, @@ -84202,61 +84158,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25172] = 20, + [25094] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2393), 1, + ACTIONS(2402), 1, anon_sym_AMP, - ACTIONS(2395), 1, - anon_sym_CARET, - ACTIONS(2397), 1, - anon_sym_PIPE, - ACTIONS(2399), 1, - anon_sym_AMP_AMP, - ACTIONS(2405), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2407), 1, - anon_sym_QMARK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2383), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2392), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2385), 2, + ACTIONS(2404), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2406), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2387), 2, + ACTIONS(2408), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2389), 2, + ACTIONS(2410), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2391), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2403), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2377), 3, + ACTIONS(2394), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2401), 16, + ACTIONS(2346), 4, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2348), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -84268,159 +84219,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [25258] = 3, + [25170] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1677), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(2428), 1, + anon_sym_EQ, + STATE(664), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2430), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1705), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(1675), 38, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(1699), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [25310] = 3, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [25230] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2411), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2269), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2409), 38, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + ACTIONS(2271), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + ACTIONS(2400), 1, + anon_sym_CARET, + ACTIONS(2402), 1, + anon_sym_AMP, + STATE(707), 1, + sym_argument_list, + ACTIONS(2273), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2392), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2404), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2406), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2408), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2410), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2346), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2394), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2348), 19, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, sym_identifier, - [25362] = 20, + [25308] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2393), 1, - anon_sym_AMP, - ACTIONS(2395), 1, - anon_sym_CARET, - ACTIONS(2397), 1, + ACTIONS(2398), 1, anon_sym_PIPE, - ACTIONS(2399), 1, - anon_sym_AMP_AMP, - ACTIONS(2405), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2407), 1, - anon_sym_QMARK, - STATE(720), 1, + ACTIONS(2400), 1, + anon_sym_CARET, + ACTIONS(2402), 1, + anon_sym_AMP, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2383), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2346), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2392), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2385), 2, + ACTIONS(2404), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2406), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2387), 2, + ACTIONS(2408), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2389), 2, + ACTIONS(2410), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2391), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2415), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2377), 3, + ACTIONS(2394), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2413), 16, + ACTIONS(2348), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -84432,56 +84397,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [25448] = 20, + [25388] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2393), 1, - anon_sym_AMP, - ACTIONS(2395), 1, - anon_sym_CARET, - ACTIONS(2397), 1, + STATE(707), 1, + sym_argument_list, + ACTIONS(2273), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2394), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2346), 11, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(2399), 1, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2348), 23, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_identifier, + [25452] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2269), 1, + anon_sym_LPAREN2, + ACTIONS(2271), 1, + anon_sym_LBRACK, + ACTIONS(2396), 1, anon_sym_AMP_AMP, - ACTIONS(2405), 1, + ACTIONS(2398), 1, + anon_sym_PIPE, + ACTIONS(2400), 1, + anon_sym_CARET, + ACTIONS(2402), 1, + anon_sym_AMP, + ACTIONS(2420), 1, anon_sym_PIPE_PIPE, - ACTIONS(2407), 1, + ACTIONS(2422), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2383), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2392), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2385), 2, + ACTIONS(2404), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2406), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2387), 2, + ACTIONS(2408), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2389), 2, + ACTIONS(2410), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2391), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2419), 2, + ACTIONS(2434), 2, aux_sym_preproc_elif_token1, anon_sym_EQ, - ACTIONS(2377), 3, + ACTIONS(2394), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2417), 16, + ACTIONS(2432), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -84498,97 +84518,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [25534] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(814), 1, - sym_attribute_specifier, - ACTIONS(2423), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2421), 34, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [25589] = 15, + [25538] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2429), 1, + ACTIONS(2440), 1, anon_sym_AMP, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2425), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2436), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2431), 2, + ACTIONS(2442), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2433), 2, + ACTIONS(2444), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2435), 2, + ACTIONS(2446), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2437), 2, + ACTIONS(2448), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2269), 3, + ACTIONS(2346), 3, anon_sym_PIPE, anon_sym_CARET, anon_sym_EQ, - ACTIONS(2427), 3, + ACTIONS(2438), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2271), 19, + ACTIONS(2348), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -84608,68 +84578,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [25664] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2441), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(682), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2439), 9, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [25727] = 5, + [25613] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(832), 1, + STATE(819), 1, sym_attribute_specifier, - ACTIONS(2445), 7, + ACTIONS(2452), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84677,7 +84593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2443), 34, + ACTIONS(2450), 34, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -84712,14 +84628,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [25782] = 5, + [25668] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(810), 1, - sym_attribute_specifier, - ACTIONS(2449), 7, + STATE(781), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2458), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2456), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84727,9 +84646,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2447), 34, + ACTIONS(2454), 31, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -84738,10 +84658,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -84762,14 +84678,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [25837] = 5, + [25723] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(820), 1, + STATE(816), 1, sym_attribute_specifier, - ACTIONS(2453), 7, + ACTIONS(2463), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84777,7 +84693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2451), 34, + ACTIONS(2461), 34, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -84812,17 +84728,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [25892] = 5, + [25778] = 5, ACTIONS(3), 1, sym_comment, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2459), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2457), 7, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(820), 1, + sym_attribute_specifier, + ACTIONS(2467), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84830,10 +84743,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2455), 31, + ACTIONS(2465), 34, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -84842,6 +84754,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -84862,14 +84778,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [25947] = 5, + [25833] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(815), 1, + STATE(812), 1, sym_attribute_specifier, - ACTIONS(2464), 7, + ACTIONS(2471), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84877,7 +84793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2462), 34, + ACTIONS(2469), 34, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -84912,7 +84828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [26002] = 9, + [25888] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -84921,13 +84837,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2468), 5, + ACTIONS(2475), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(781), 7, + STATE(685), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -84945,7 +84861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2466), 9, + ACTIONS(2473), 9, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -84966,76 +84882,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26065] = 5, + [25951] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(819), 1, - sym_attribute_specifier, - ACTIONS(2472), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2269), 1, anon_sym_LPAREN2, + ACTIONS(2271), 1, + anon_sym_LBRACK, + STATE(707), 1, + sym_argument_list, + ACTIONS(2273), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2436), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2438), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2346), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2348), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_COLON, - ACTIONS(2470), 34, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [26120] = 9, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [26016] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2427), 3, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2438), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2269), 10, + ACTIONS(2346), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE, @@ -85046,7 +84967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2271), 23, + ACTIONS(2348), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -85070,54 +84991,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26183] = 18, + [26079] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2269), 1, + ACTIONS(2346), 1, anon_sym_EQ, - ACTIONS(2429), 1, + ACTIONS(2440), 1, anon_sym_AMP, - ACTIONS(2474), 1, + ACTIONS(2477), 1, anon_sym_AMP_AMP, - ACTIONS(2476), 1, + ACTIONS(2479), 1, anon_sym_PIPE, - ACTIONS(2478), 1, + ACTIONS(2481), 1, anon_sym_CARET, - STATE(720), 1, + STATE(707), 1, + sym_argument_list, + ACTIONS(2273), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2436), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2442), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2446), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2448), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2438), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2348), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [26160] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2269), 1, + anon_sym_LPAREN2, + ACTIONS(2271), 1, + anon_sym_LBRACK, + ACTIONS(2346), 1, + anon_sym_EQ, + ACTIONS(2440), 1, + anon_sym_AMP, + ACTIONS(2479), 1, + anon_sym_PIPE, + ACTIONS(2481), 1, + anon_sym_CARET, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2273), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2436), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2442), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2444), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2446), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2448), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2438), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2348), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [26239] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2269), 1, + anon_sym_LPAREN2, + ACTIONS(2271), 1, + anon_sym_LBRACK, + ACTIONS(2440), 1, + anon_sym_AMP, + ACTIONS(2481), 1, + anon_sym_CARET, + STATE(707), 1, + sym_argument_list, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2425), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2346), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2436), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2431), 2, + ACTIONS(2442), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2433), 2, + ACTIONS(2444), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2435), 2, + ACTIONS(2446), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2437), 2, + ACTIONS(2448), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2427), 3, + ACTIONS(2438), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2271), 18, + ACTIONS(2348), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, @@ -85133,7 +85177,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26264] = 9, + [26316] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1104), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2485), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(685), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2483), 9, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [26379] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(822), 1, + sym_attribute_specifier, + ACTIONS(2489), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2487), 34, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [26434] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -85142,13 +85290,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2482), 5, + ACTIONS(2493), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(682), 7, + STATE(791), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -85166,7 +85314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2480), 9, + ACTIONS(2491), 9, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -85187,49 +85335,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26327] = 17, + [26497] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2269), 1, - anon_sym_EQ, - ACTIONS(2429), 1, - anon_sym_AMP, - ACTIONS(2476), 1, - anon_sym_PIPE, - ACTIONS(2478), 1, - anon_sym_CARET, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2425), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2436), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2431), 2, + ACTIONS(2442), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2433), 2, + ACTIONS(2444), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2435), 2, + ACTIONS(2446), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2437), 2, + ACTIONS(2448), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2427), 3, + ACTIONS(2438), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2271), 19, + ACTIONS(2346), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2348), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -85249,79 +85394,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26406] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2415), 1, - anon_sym_EQ, - ACTIONS(2429), 1, - anon_sym_AMP, - ACTIONS(2474), 1, - anon_sym_AMP_AMP, - ACTIONS(2476), 1, - anon_sym_PIPE, - ACTIONS(2478), 1, - anon_sym_CARET, - ACTIONS(2484), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2486), 1, - anon_sym_QMARK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2425), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2431), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2433), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2435), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2437), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2427), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2413), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [26491] = 5, + [26570] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(826), 1, + STATE(821), 1, sym_attribute_specifier, - ACTIONS(2490), 7, + ACTIONS(2497), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85329,7 +85409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2488), 34, + ACTIONS(2495), 34, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -85364,106 +85444,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [26546] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1104), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2494), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(791), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2492), 9, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [26609] = 16, + [26625] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2429), 1, + ACTIONS(2418), 1, + anon_sym_EQ, + ACTIONS(2440), 1, anon_sym_AMP, - ACTIONS(2478), 1, + ACTIONS(2477), 1, + anon_sym_AMP_AMP, + ACTIONS(2479), 1, + anon_sym_PIPE, + ACTIONS(2481), 1, anon_sym_CARET, - STATE(720), 1, + ACTIONS(2499), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2501), 1, + anon_sym_QMARK, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2269), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2425), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2436), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2431), 2, + ACTIONS(2442), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2433), 2, + ACTIONS(2444), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2435), 2, + ACTIONS(2446), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2437), 2, + ACTIONS(2448), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2438), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2416), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [26710] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2269), 1, + anon_sym_LPAREN2, + ACTIONS(2271), 1, + anon_sym_LBRACK, + STATE(707), 1, + sym_argument_list, + ACTIONS(2273), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2436), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2448), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2427), 3, + ACTIONS(2438), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2271), 19, + ACTIONS(2346), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(2348), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, @@ -85479,55 +85565,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26686] = 20, + [26777] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2403), 1, + ACTIONS(2426), 1, anon_sym_EQ, - ACTIONS(2429), 1, + ACTIONS(2440), 1, anon_sym_AMP, - ACTIONS(2474), 1, + ACTIONS(2477), 1, anon_sym_AMP_AMP, - ACTIONS(2476), 1, + ACTIONS(2479), 1, anon_sym_PIPE, - ACTIONS(2478), 1, + ACTIONS(2481), 1, anon_sym_CARET, - ACTIONS(2484), 1, + ACTIONS(2499), 1, anon_sym_PIPE_PIPE, - ACTIONS(2486), 1, + ACTIONS(2501), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2425), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2436), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2431), 2, + ACTIONS(2442), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2433), 2, + ACTIONS(2444), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2435), 2, + ACTIONS(2446), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2437), 2, + ACTIONS(2448), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2427), 3, + ACTIONS(2438), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2401), 16, + ACTIONS(2424), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -85544,50 +85630,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26771] = 14, + [26862] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1104), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2505), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(785), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2503), 9, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [26925] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2425), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2436), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2431), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2433), 2, + ACTIONS(2444), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2435), 2, + ACTIONS(2446), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2437), 2, + ACTIONS(2448), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2427), 3, + ACTIONS(2438), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2269), 4, + ACTIONS(2346), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_EQ, - ACTIONS(2271), 19, + ACTIONS(2348), 21, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, @@ -85603,12 +85742,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26844] = 5, + [26996] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2273), 1, + ACTIONS(2257), 1, anon_sym_EQ, - ACTIONS(2275), 10, + ACTIONS(2259), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -85653,116 +85792,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [26899] = 20, + [27051] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2419), 1, + ACTIONS(2434), 1, anon_sym_EQ, - ACTIONS(2429), 1, + ACTIONS(2440), 1, anon_sym_AMP, - ACTIONS(2474), 1, + ACTIONS(2477), 1, anon_sym_AMP_AMP, - ACTIONS(2476), 1, + ACTIONS(2479), 1, anon_sym_PIPE, - ACTIONS(2478), 1, + ACTIONS(2481), 1, anon_sym_CARET, - ACTIONS(2484), 1, + ACTIONS(2499), 1, anon_sym_PIPE_PIPE, - ACTIONS(2486), 1, + ACTIONS(2501), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2425), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2436), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2431), 2, + ACTIONS(2442), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2433), 2, + ACTIONS(2444), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2435), 2, + ACTIONS(2446), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2437), 2, + ACTIONS(2448), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2427), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2417), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [26984] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2425), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2427), 3, + ACTIONS(2438), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2269), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2271), 23, + ACTIONS(2432), 16, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -85773,14 +85857,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27049] = 5, + [27136] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(825), 1, + STATE(832), 1, sym_attribute_specifier, - ACTIONS(2498), 7, + ACTIONS(2509), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85788,7 +85872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2496), 34, + ACTIONS(2507), 34, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -85823,70 +85907,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [27104] = 11, + [27191] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2425), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2437), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2427), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2269), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(2271), 23, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(830), 1, + sym_attribute_specifier, + ACTIONS(2513), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [27171] = 5, + ACTIONS(2511), 34, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [27246] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(829), 1, + STATE(809), 1, sym_attribute_specifier, - ACTIONS(2502), 7, + ACTIONS(2517), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85894,7 +85972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2500), 34, + ACTIONS(2515), 34, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -85929,72 +86007,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [27226] = 13, + [27301] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2425), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2433), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2435), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2437), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2427), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2269), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2271), 21, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(836), 1, + sym_attribute_specifier, + ACTIONS(2521), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [27297] = 5, + ACTIONS(2519), 34, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [27356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(836), 1, - sym_attribute_specifier, - ACTIONS(2506), 7, + ACTIONS(2525), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86002,9 +86068,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2504), 34, + ACTIONS(2523), 35, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -86037,10 +86104,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [27352] = 3, + [27406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2510), 7, + ACTIONS(2529), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86048,7 +86115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2508), 35, + ACTIONS(2527), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86084,10 +86151,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [27402] = 3, + [27456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2514), 7, + ACTIONS(2533), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86095,7 +86162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2512), 35, + ACTIONS(2531), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86131,10 +86198,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [27452] = 3, + [27506] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2518), 7, + STATE(781), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2539), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2537), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86142,7 +86216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2516), 35, + ACTIONS(2535), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86154,10 +86228,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [27560] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(781), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2539), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(2543), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2541), 30, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -86176,12 +86295,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [27502] = 3, + [27614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 7, + ACTIONS(2547), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86189,7 +86307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2520), 35, + ACTIONS(2545), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86225,17 +86343,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [27552] = 5, + [27664] = 3, ACTIONS(3), 1, sym_comment, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2528), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2526), 7, + ACTIONS(2551), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86243,7 +86354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2524), 30, + ACTIONS(2549), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86255,6 +86366,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -86273,18 +86388,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [27606] = 5, + [27714] = 5, ACTIONS(3), 1, sym_comment, - STATE(785), 1, + STATE(831), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2528), 4, + ACTIONS(2557), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2532), 7, + ACTIONS(2555), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86292,7 +86408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2530), 30, + ACTIONS(2553), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86323,17 +86439,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [27660] = 5, + [27768] = 5, ACTIONS(3), 1, sym_comment, - STATE(785), 1, + STATE(817), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2528), 4, + ACTIONS(2563), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2536), 7, + ACTIONS(2561), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86341,7 +86457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2534), 30, + ACTIONS(2559), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86372,10 +86488,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [27714] = 3, + [27822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 7, + ACTIONS(2567), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86383,7 +86499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2538), 35, + ACTIONS(2565), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86419,10 +86535,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [27764] = 3, + [27872] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 7, + STATE(781), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2539), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2571), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86430,7 +86553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2542), 35, + ACTIONS(2569), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86442,10 +86565,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -86464,19 +86583,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [27814] = 5, + [27926] = 3, ACTIONS(3), 1, sym_comment, - STATE(813), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2550), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2548), 7, + ACTIONS(2575), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86484,7 +86595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2546), 30, + ACTIONS(2573), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86496,6 +86607,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -86514,11 +86629,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [27868] = 3, + [27976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2554), 7, + ACTIONS(2579), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86526,7 +86642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2552), 35, + ACTIONS(2577), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86562,17 +86678,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [27918] = 5, + [28026] = 3, ACTIONS(3), 1, sym_comment, - STATE(831), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2560), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2558), 7, + ACTIONS(2583), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86580,7 +86689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2556), 30, + ACTIONS(2581), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86592,6 +86701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -86610,11 +86723,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [27972] = 3, + [28076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2564), 7, + ACTIONS(2587), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86622,7 +86736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2562), 35, + ACTIONS(2585), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86658,10 +86772,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [28022] = 3, + [28126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2568), 7, + ACTIONS(2591), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86669,7 +86783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2566), 35, + ACTIONS(2589), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86705,10 +86819,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [28072] = 3, + [28176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 7, + ACTIONS(2595), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86716,7 +86830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2556), 35, + ACTIONS(2593), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86752,10 +86866,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [28122] = 3, + [28226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2572), 7, + ACTIONS(2599), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86763,7 +86877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2570), 35, + ACTIONS(2597), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86799,10 +86913,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [28172] = 3, + [28276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2576), 7, + ACTIONS(2555), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86810,7 +86924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2574), 35, + ACTIONS(2553), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86846,10 +86960,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [28222] = 3, + [28326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2580), 7, + ACTIONS(2603), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86857,7 +86971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2578), 35, + ACTIONS(2601), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86893,10 +87007,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [28272] = 3, + [28376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2584), 7, + ACTIONS(2607), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86904,7 +87018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2582), 35, + ACTIONS(2605), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86940,10 +87054,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [28322] = 3, + [28426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2588), 7, + ACTIONS(2611), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86951,7 +87065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2586), 35, + ACTIONS(2609), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -86987,10 +87101,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [28372] = 3, + [28476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 7, + ACTIONS(2615), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86998,7 +87112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2590), 35, + ACTIONS(2613), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87034,10 +87148,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [28422] = 3, + [28526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2596), 7, + ACTIONS(2619), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87045,7 +87159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2594), 35, + ACTIONS(2617), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87081,10 +87195,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [28472] = 3, + [28576] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2600), 7, + STATE(781), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2539), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2623), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87092,7 +87213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2598), 35, + ACTIONS(2621), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87104,10 +87225,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -87126,12 +87243,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [28522] = 3, + [28630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2604), 7, + ACTIONS(2627), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87139,7 +87255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2602), 35, + ACTIONS(2625), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87175,17 +87291,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [28572] = 5, + [28680] = 5, ACTIONS(3), 1, sym_comment, - STATE(785), 1, + STATE(811), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2528), 4, + ACTIONS(2633), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2608), 7, + ACTIONS(2631), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87193,7 +87309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2606), 30, + ACTIONS(2629), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87224,10 +87340,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [28626] = 3, + [28734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2612), 7, + ACTIONS(2637), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87235,7 +87351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2610), 35, + ACTIONS(2635), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87271,18 +87387,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [28676] = 3, + [28784] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2616), 7, + ACTIONS(2454), 1, + sym_primitive_type, + STATE(781), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2458), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2642), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2614), 35, + ACTIONS(2639), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87294,10 +87418,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -87316,19 +87436,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [28726] = 5, + [28840] = 3, ACTIONS(3), 1, sym_comment, - STATE(812), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2622), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2620), 7, + ACTIONS(2647), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87336,7 +87448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2618), 30, + ACTIONS(2645), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87348,6 +87460,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -87366,27 +87482,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [28780] = 6, + [28890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2455), 1, - sym_primitive_type, - STATE(785), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2459), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2627), 6, + ACTIONS(2651), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2624), 30, + anon_sym_COLON, + ACTIONS(2649), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87398,6 +87507,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -87416,11 +87529,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [28836] = 3, + [28940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2632), 7, + ACTIONS(2655), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87428,7 +87542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2630), 35, + ACTIONS(2653), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87464,10 +87578,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [28886] = 3, + [28990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2636), 7, + ACTIONS(2659), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87475,7 +87589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2634), 35, + ACTIONS(2657), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87511,10 +87625,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [28936] = 3, + [29040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2640), 7, + ACTIONS(2663), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87522,7 +87636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2638), 35, + ACTIONS(2661), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87558,10 +87672,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [28986] = 3, + [29090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2644), 7, + ACTIONS(2667), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87569,7 +87683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2642), 35, + ACTIONS(2665), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87605,61 +87719,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [29036] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1714), 1, - anon_sym_EQ, - ACTIONS(1718), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1705), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1699), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [29090] = 6, + [29140] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2646), 1, + ACTIONS(2669), 1, anon_sym_LPAREN2, - STATE(811), 1, + STATE(810), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(1712), 4, anon_sym_signed, @@ -87704,75 +87769,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [29146] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2651), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2649), 35, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, [29196] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2653), 1, + ACTIONS(2672), 1, sym_identifier, - ACTIONS(2662), 1, + ACTIONS(2681), 1, sym_primitive_type, STATE(835), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2660), 4, + ACTIONS(2679), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2656), 6, + ACTIONS(2675), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2658), 29, + ACTIONS(2677), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87802,34 +87820,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [29254] = 3, + [29254] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2666), 7, + ACTIONS(1714), 1, + anon_sym_EQ, + ACTIONS(1718), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1705), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1699), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2664), 35, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [29308] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1292), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -87848,13 +87911,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [29304] = 3, + [29357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2670), 1, + ACTIONS(1250), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2668), 40, + ACTIONS(1248), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -87895,12 +87961,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29353] = 3, + [29406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 1, + ACTIONS(2685), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1300), 40, + ACTIONS(2683), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -87941,12 +88007,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29402] = 3, + [29455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2674), 1, + ACTIONS(2689), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2672), 40, + ACTIONS(2687), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -87987,12 +88053,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29451] = 3, + [29504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2678), 1, + ACTIONS(2693), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2676), 40, + ACTIONS(2691), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88033,7 +88099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29500] = 3, + [29553] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1274), 1, @@ -88079,7 +88145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29549] = 3, + [29602] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1342), 1, @@ -88125,58 +88191,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29598] = 3, + [29651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1296), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [29647] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2682), 1, + ACTIONS(1302), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2680), 40, + ACTIONS(1300), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88217,12 +88237,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29696] = 3, + [29700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2686), 1, + ACTIONS(2697), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2684), 40, + ACTIONS(2695), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88263,12 +88283,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29745] = 3, + [29749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2690), 1, + ACTIONS(2701), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2688), 40, + ACTIONS(2699), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88309,12 +88329,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29794] = 3, + [29798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2694), 1, + ACTIONS(2705), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2692), 40, + ACTIONS(2703), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88355,12 +88375,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29843] = 3, + [29847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2698), 1, + ACTIONS(2709), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2696), 40, + ACTIONS(2707), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88401,12 +88421,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29892] = 3, + [29896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 1, + ACTIONS(1298), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1248), 40, + ACTIONS(1296), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88447,12 +88467,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29941] = 3, + [29945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 1, + ACTIONS(2713), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1292), 40, + ACTIONS(2711), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88493,12 +88513,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29990] = 3, + [29994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(2717), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2700), 40, + ACTIONS(2715), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88539,12 +88559,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30039] = 3, + [30043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2706), 1, + ACTIONS(2721), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 40, + ACTIONS(2719), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88585,12 +88605,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30088] = 3, + [30092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2710), 1, + ACTIONS(2725), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2708), 40, + ACTIONS(2723), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88631,12 +88651,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30137] = 3, + [30141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2714), 1, + ACTIONS(2729), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2712), 40, + ACTIONS(2727), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88677,7 +88697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30186] = 10, + [30190] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -88686,9 +88706,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2716), 1, + ACTIONS(2731), 1, anon_sym_SEMI, - ACTIONS(2494), 2, + ACTIONS(2493), 2, anon_sym_LPAREN2, anon_sym_STAR, STATE(791), 7, @@ -88699,7 +88719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2492), 8, + ACTIONS(2491), 8, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -88729,57 +88749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [30248] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2722), 1, - anon_sym___attribute__, - ACTIONS(2725), 1, - anon_sym_LBRACE, - ACTIONS(2727), 1, - anon_sym_COLON, - STATE(808), 1, - sym_attribute_specifier, - STATE(909), 1, - sym_enumerator_list, - ACTIONS(2720), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2718), 29, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [30306] = 10, + [30252] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -88788,9 +88758,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2729), 1, + ACTIONS(2733), 1, anon_sym_SEMI, - ACTIONS(2494), 2, + ACTIONS(2493), 2, anon_sym_LPAREN2, anon_sym_STAR, STATE(791), 7, @@ -88801,7 +88771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2492), 8, + ACTIONS(2491), 8, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -88831,7 +88801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [30368] = 10, + [30314] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -88840,9 +88810,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2731), 1, + ACTIONS(2735), 1, anon_sym_SEMI, - ACTIONS(2494), 2, + ACTIONS(2493), 2, anon_sym_LPAREN2, anon_sym_STAR, STATE(791), 7, @@ -88853,7 +88823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2492), 8, + ACTIONS(2491), 8, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -88883,7 +88853,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [30430] = 10, + [30376] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2741), 1, + anon_sym___attribute__, + ACTIONS(2744), 1, + anon_sym_LBRACE, + ACTIONS(2746), 1, + anon_sym_COLON, + STATE(827), 1, + sym_attribute_specifier, + STATE(906), 1, + sym_enumerator_list, + ACTIONS(2739), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2737), 29, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [30434] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -88892,9 +88912,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1104), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2733), 1, + ACTIONS(2748), 1, anon_sym_SEMI, - ACTIONS(2494), 2, + ACTIONS(2493), 2, anon_sym_LPAREN2, anon_sym_STAR, STATE(791), 7, @@ -88905,7 +88925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2492), 8, + ACTIONS(2491), 8, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -88935,23 +88955,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [30492] = 9, + [30496] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2273), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2752), 1, anon_sym_DOT, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2269), 13, + ACTIONS(2346), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -88965,7 +88985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2271), 19, + ACTIONS(2348), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88985,28 +89005,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30551] = 9, + [30555] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2273), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2752), 1, anon_sym_DOT, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2245), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2754), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2346), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -89015,7 +89036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2247), 19, + ACTIONS(2348), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89035,30 +89056,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30610] = 11, + [30616] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1749), 1, + anon_sym_LPAREN2, + ACTIONS(1751), 1, + anon_sym_STAR, + ACTIONS(1753), 1, + anon_sym___based, + ACTIONS(2756), 1, + sym_identifier, + ACTIONS(2764), 1, + anon_sym_LBRACK, + STATE(1108), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1321), 1, + sym__declarator, + STATE(1475), 1, + sym__abstract_declarator, + STATE(1488), 1, + sym_parameter_list, + STATE(1803), 1, + sym_ms_based_modifier, + ACTIONS(2758), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2762), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1002), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1005), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2760), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1487), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1354), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [30695] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2271), 1, + anon_sym_LBRACK, + ACTIONS(2273), 1, + anon_sym_DASH_GT, + ACTIONS(2418), 1, + anon_sym_EQ, + ACTIONS(2750), 1, + anon_sym_LPAREN2, + ACTIONS(2752), 1, + anon_sym_DOT, + ACTIONS(2768), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2770), 1, + anon_sym_AMP_AMP, + ACTIONS(2772), 1, + anon_sym_PIPE, + ACTIONS(2774), 1, + anon_sym_CARET, + ACTIONS(2776), 1, + anon_sym_AMP, + ACTIONS(2786), 1, + anon_sym_QMARK, + STATE(707), 1, + sym_argument_list, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2766), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2778), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2780), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2782), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2784), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2754), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2416), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [30778] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1749), 1, + anon_sym_LPAREN2, + ACTIONS(1751), 1, + anon_sym_STAR, + ACTIONS(1753), 1, + anon_sym___based, + ACTIONS(2756), 1, + sym_identifier, + ACTIONS(2764), 1, + anon_sym_LBRACK, + STATE(1108), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1303), 1, + sym__declarator, + STATE(1474), 1, + sym__abstract_declarator, + STATE(1488), 1, + sym_parameter_list, + STATE(1803), 1, + sym_ms_based_modifier, + ACTIONS(2762), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2788), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(870), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1001), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2760), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1487), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1354), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [30857] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2273), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2752), 1, anon_sym_DOT, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2739), 2, + ACTIONS(2766), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2741), 3, + ACTIONS(2754), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2269), 8, + ACTIONS(2346), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -89067,7 +89270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2271), 19, + ACTIONS(2348), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89087,40 +89290,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30673] = 12, + [30920] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2273), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2752), 1, anon_sym_DOT, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2739), 2, + ACTIONS(2766), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2743), 2, + ACTIONS(2784), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2741), 3, + ACTIONS(2754), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2269), 6, + ACTIONS(2346), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_EQ, - ACTIONS(2271), 19, + ACTIONS(2348), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89140,104 +89343,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30738] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1749), 1, - anon_sym_LPAREN2, - ACTIONS(1751), 1, - anon_sym_STAR, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2745), 1, - sym_identifier, - ACTIONS(2753), 1, - anon_sym_LBRACK, - STATE(1109), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1303), 1, - sym__declarator, - STATE(1474), 1, - sym__abstract_declarator, - STATE(1486), 1, - sym_parameter_list, - STATE(1803), 1, - sym_ms_based_modifier, - ACTIONS(2747), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2751), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(884), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1002), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2749), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1496), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1354), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [30817] = 14, + [30985] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2273), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2752), 1, anon_sym_DOT, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2739), 2, + ACTIONS(2766), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2743), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2755), 2, + ACTIONS(2780), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2757), 2, + ACTIONS(2782), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2741), 3, + ACTIONS(2784), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2754), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2269), 4, + ACTIONS(2346), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_EQ, - ACTIONS(2271), 17, + ACTIONS(2348), 17, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89255,47 +89398,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30886] = 15, + [31054] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2273), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2752), 1, anon_sym_DOT, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2739), 2, + ACTIONS(2766), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2743), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2755), 2, + ACTIONS(2778), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2780), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2757), 2, + ACTIONS(2782), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2759), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2741), 3, + ACTIONS(2784), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2754), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2269), 4, + ACTIONS(2346), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_EQ, - ACTIONS(2271), 15, + ACTIONS(2348), 15, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89311,48 +89454,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30957] = 16, + [31125] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2273), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2752), 1, anon_sym_DOT, - ACTIONS(2761), 1, + ACTIONS(2776), 1, anon_sym_AMP, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2739), 2, + ACTIONS(2766), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2743), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2755), 2, + ACTIONS(2778), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2780), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2757), 2, + ACTIONS(2782), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2759), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2269), 3, + ACTIONS(2784), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2346), 3, anon_sym_PIPE, anon_sym_CARET, anon_sym_EQ, - ACTIONS(2741), 3, + ACTIONS(2754), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2271), 15, + ACTIONS(2348), 15, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89368,49 +89511,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31030] = 17, + [31198] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2273), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2752), 1, anon_sym_DOT, - ACTIONS(2761), 1, - anon_sym_AMP, - ACTIONS(2763), 1, + ACTIONS(2774), 1, anon_sym_CARET, - STATE(720), 1, + ACTIONS(2776), 1, + anon_sym_AMP, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2269), 2, + ACTIONS(2346), 2, anon_sym_PIPE, anon_sym_EQ, - ACTIONS(2739), 2, + ACTIONS(2766), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2743), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2755), 2, + ACTIONS(2778), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2780), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2757), 2, + ACTIONS(2782), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2759), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2741), 3, + ACTIONS(2784), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2754), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2271), 15, + ACTIONS(2348), 15, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89426,50 +89569,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31105] = 18, + [31273] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2273), 1, anon_sym_DASH_GT, - ACTIONS(2269), 1, + ACTIONS(2346), 1, anon_sym_EQ, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2752), 1, anon_sym_DOT, - ACTIONS(2761), 1, - anon_sym_AMP, - ACTIONS(2763), 1, - anon_sym_CARET, - ACTIONS(2765), 1, + ACTIONS(2772), 1, anon_sym_PIPE, - STATE(720), 1, + ACTIONS(2774), 1, + anon_sym_CARET, + ACTIONS(2776), 1, + anon_sym_AMP, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2739), 2, + ACTIONS(2766), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2743), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2755), 2, + ACTIONS(2778), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2780), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2757), 2, + ACTIONS(2782), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2759), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2741), 3, + ACTIONS(2784), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2754), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2271), 15, + ACTIONS(2348), 15, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89485,52 +89628,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31182] = 19, + [31350] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2273), 1, anon_sym_DASH_GT, - ACTIONS(2269), 1, + ACTIONS(2346), 1, anon_sym_EQ, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2752), 1, anon_sym_DOT, - ACTIONS(2761), 1, - anon_sym_AMP, - ACTIONS(2763), 1, - anon_sym_CARET, - ACTIONS(2765), 1, - anon_sym_PIPE, - ACTIONS(2767), 1, + ACTIONS(2770), 1, anon_sym_AMP_AMP, - STATE(720), 1, + ACTIONS(2772), 1, + anon_sym_PIPE, + ACTIONS(2774), 1, + anon_sym_CARET, + ACTIONS(2776), 1, + anon_sym_AMP, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2739), 2, + ACTIONS(2766), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2743), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2755), 2, + ACTIONS(2778), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2780), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2757), 2, + ACTIONS(2782), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2759), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2741), 3, + ACTIONS(2784), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2754), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2271), 14, + ACTIONS(2348), 14, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_RBRACK, @@ -89545,29 +89688,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31261] = 10, + [31429] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2273), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2752), 1, anon_sym_DOT, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2741), 3, + ACTIONS(2307), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2269), 10, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -89576,7 +89718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2271), 19, + ACTIONS(2309), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89596,56 +89738,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31322] = 21, + [31488] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2273), 1, anon_sym_DASH_GT, - ACTIONS(2419), 1, + ACTIONS(2434), 1, anon_sym_EQ, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2752), 1, anon_sym_DOT, - ACTIONS(2761), 1, - anon_sym_AMP, - ACTIONS(2763), 1, - anon_sym_CARET, - ACTIONS(2765), 1, - anon_sym_PIPE, - ACTIONS(2767), 1, - anon_sym_AMP_AMP, - ACTIONS(2769), 1, + ACTIONS(2768), 1, anon_sym_PIPE_PIPE, - ACTIONS(2771), 1, + ACTIONS(2770), 1, + anon_sym_AMP_AMP, + ACTIONS(2772), 1, + anon_sym_PIPE, + ACTIONS(2774), 1, + anon_sym_CARET, + ACTIONS(2776), 1, + anon_sym_AMP, + ACTIONS(2786), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2739), 2, + ACTIONS(2766), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2743), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2755), 2, + ACTIONS(2778), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2780), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2757), 2, + ACTIONS(2782), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2759), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2741), 3, + ACTIONS(2784), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2754), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2417), 12, + ACTIONS(2432), 12, anon_sym_DOT_DOT_DOT, anon_sym_RBRACK, anon_sym_STAR_EQ, @@ -89658,58 +89800,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31405] = 21, + [31571] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2273), 1, anon_sym_DASH_GT, - ACTIONS(2415), 1, - anon_sym_EQ, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2752), 1, anon_sym_DOT, - ACTIONS(2761), 1, - anon_sym_AMP, - ACTIONS(2763), 1, - anon_sym_CARET, - ACTIONS(2765), 1, - anon_sym_PIPE, - ACTIONS(2767), 1, - anon_sym_AMP_AMP, - ACTIONS(2769), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2771), 1, - anon_sym_QMARK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2739), 2, + ACTIONS(2289), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2743), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2755), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2757), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2759), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2741), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2413), 12, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2291), 19, anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -89720,56 +89850,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31488] = 21, + [31630] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2273), 1, anon_sym_DASH_GT, - ACTIONS(2403), 1, + ACTIONS(2426), 1, anon_sym_EQ, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2752), 1, anon_sym_DOT, - ACTIONS(2761), 1, - anon_sym_AMP, - ACTIONS(2763), 1, - anon_sym_CARET, - ACTIONS(2765), 1, - anon_sym_PIPE, - ACTIONS(2767), 1, - anon_sym_AMP_AMP, - ACTIONS(2769), 1, + ACTIONS(2768), 1, anon_sym_PIPE_PIPE, - ACTIONS(2771), 1, + ACTIONS(2770), 1, + anon_sym_AMP_AMP, + ACTIONS(2772), 1, + anon_sym_PIPE, + ACTIONS(2774), 1, + anon_sym_CARET, + ACTIONS(2776), 1, + anon_sym_AMP, + ACTIONS(2786), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2739), 2, + ACTIONS(2766), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2743), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2755), 2, + ACTIONS(2778), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2780), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2757), 2, + ACTIONS(2782), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2759), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2741), 3, + ACTIONS(2784), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2754), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2401), 12, + ACTIONS(2424), 12, anon_sym_DOT_DOT_DOT, anon_sym_RBRACK, anon_sym_STAR_EQ, @@ -89782,25 +89912,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31571] = 7, + [31713] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2725), 1, + ACTIONS(2744), 1, anon_sym_LBRACE, - ACTIONS(2777), 1, + ACTIONS(2794), 1, anon_sym___attribute__, - STATE(839), 1, + STATE(838), 1, sym_attribute_specifier, - STATE(928), 1, + STATE(926), 1, sym_enumerator_list, - ACTIONS(2775), 6, + ACTIONS(2792), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2773), 29, + ACTIONS(2790), 29, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -89830,83 +89960,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [31626] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1749), 1, - anon_sym_LPAREN2, - ACTIONS(1751), 1, - anon_sym_STAR, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2745), 1, - sym_identifier, - ACTIONS(2753), 1, - anon_sym_LBRACK, - STATE(1109), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1321), 1, - sym__declarator, - STATE(1475), 1, - sym__abstract_declarator, - STATE(1486), 1, - sym_parameter_list, - STATE(1803), 1, - sym_ms_based_modifier, - ACTIONS(2751), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2780), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1001), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1016), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2749), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1496), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1354), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [31705] = 9, + [31768] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2273), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2752), 1, anon_sym_DOT, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2330), 13, + ACTIONS(2303), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -89920,7 +89990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2332), 19, + ACTIONS(2305), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89940,23 +90010,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31764] = 9, + [31827] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2273), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2752), 1, anon_sym_DOT, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2291), 13, + ACTIONS(2275), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -89970,7 +90040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2293), 19, + ACTIONS(2277), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89990,23 +90060,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31823] = 9, + [31886] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2273), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2752), 1, anon_sym_DOT, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2257), 13, + ACTIONS(2265), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -90020,7 +90087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2259), 19, + ACTIONS(2267), 21, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90040,209 +90107,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31882] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2782), 2, - anon_sym___attribute__, - sym_identifier, - ACTIONS(2789), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2792), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2785), 4, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(2787), 28, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - [31935] = 6, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [31943] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2794), 2, + ACTIONS(2797), 2, anon_sym___attribute__, sym_identifier, - ACTIONS(2801), 2, + ACTIONS(2804), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(2804), 3, + ACTIONS(2807), 3, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, - ACTIONS(2797), 4, + ACTIONS(2800), 4, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(2799), 28, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - [31988] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2255), 1, - anon_sym_DASH_GT, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(2737), 1, - anon_sym_DOT, - STATE(720), 1, - sym_argument_list, - ACTIONS(2334), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2336), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [32045] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2287), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2289), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [32091] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2106), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2104), 36, + ACTIONS(2802), 28, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -90268,14 +90156,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, + [31996] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2809), 2, + anon_sym___attribute__, sym_identifier, - [32137] = 3, + ACTIONS(2816), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2819), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2812), 4, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(2814), 28, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + [32049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2102), 2, + ACTIONS(2114), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(2100), 36, + ACTIONS(2112), 36, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90312,10 +90246,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32183] = 3, + [32095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2265), 14, + ACTIONS(2297), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -90330,7 +90264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2267), 24, + ACTIONS(2299), 24, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -90355,23 +90289,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [32229] = 5, + [32141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2379), 1, - anon_sym_EQ, - ACTIONS(2381), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1705), 13, + ACTIONS(2285), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -90384,8 +90305,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(1699), 14, + ACTIONS(2287), 24, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -90397,13 +90319,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [32279] = 3, + [32187] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2261), 14, + ACTIONS(2428), 1, + anon_sym_EQ, + ACTIONS(2430), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1705), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -90416,9 +90361,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(2263), 24, + ACTIONS(1699), 14, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -90430,23 +90374,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [32325] = 3, + [32237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2277), 14, + ACTIONS(2293), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -90461,7 +90395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2279), 24, + ACTIONS(2295), 24, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -90486,22 +90420,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [32371] = 3, + [32283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2710), 1, + ACTIONS(2118), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2708), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_LBRACE, + ACTIONS(2116), 36, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -90528,57 +90463,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32416] = 3, + [32329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2714), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2712), 35, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [32461] = 3, + ACTIONS(2281), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2283), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [32375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 1, + ACTIONS(2721), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1340), 36, + anon_sym_RBRACE, + ACTIONS(2719), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -90612,13 +90548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32506] = 3, + [32420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2694), 2, + ACTIONS(2697), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2692), 35, + ACTIONS(2695), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90654,56 +90590,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32551] = 5, + [32465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2411), 1, - anon_sym_LBRACK_LBRACK, - STATE(667), 1, - sym_string_literal, - ACTIONS(2806), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2409), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [32600] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2706), 1, + ACTIONS(2725), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 36, + ACTIONS(2723), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90740,13 +90632,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32645] = 3, + [32510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2670), 2, + ACTIONS(2729), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2668), 35, + ACTIONS(2727), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90782,7 +90674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32690] = 3, + [32555] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1274), 1, @@ -90824,12 +90716,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32735] = 3, + [32600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2678), 1, + ACTIONS(2689), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2676), 36, + ACTIONS(2687), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90866,12 +90758,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32780] = 3, + [32645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2682), 1, + ACTIONS(2685), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2680), 36, + ACTIONS(2683), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90908,12 +90800,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32825] = 3, + [32690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2694), 1, + ACTIONS(2705), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2692), 36, + ACTIONS(2703), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90950,21 +90842,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32870] = 5, + [32735] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2812), 1, + ACTIONS(2825), 1, anon_sym___attribute__, - STATE(844), 1, + STATE(840), 1, sym_attribute_specifier, - ACTIONS(2810), 6, + ACTIONS(2823), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2808), 29, + ACTIONS(2821), 29, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -90994,12 +90886,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [32919] = 3, + [32784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2686), 1, + ACTIONS(2713), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2684), 36, + ACTIONS(2711), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91036,54 +90928,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32964] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2674), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2672), 35, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [33009] = 3, + [32829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(2717), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2700), 36, + ACTIONS(2715), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91120,12 +90970,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33054] = 3, + [32874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2714), 1, + ACTIONS(2721), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2712), 36, + ACTIONS(2719), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91162,12 +91012,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33099] = 3, + [32919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2690), 1, + ACTIONS(2697), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2688), 36, + ACTIONS(2695), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91204,12 +91054,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33144] = 3, + [32964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(2693), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1296), 36, + ACTIONS(2691), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91246,12 +91096,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33189] = 3, + [33009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2674), 1, + ACTIONS(2701), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2672), 36, + ACTIONS(2699), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91288,12 +91138,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33234] = 3, + [33054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2670), 1, + ACTIONS(2729), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2668), 36, + ACTIONS(2727), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91330,13 +91180,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33279] = 3, + [33099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2710), 2, + ACTIONS(2701), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2708), 35, + ACTIONS(2699), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91372,12 +91222,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33324] = 3, + [33144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 1, + ACTIONS(1342), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1292), 36, + ACTIONS(1340), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91414,13 +91264,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33369] = 3, + [33189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2682), 2, + ACTIONS(2717), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2680), 35, + ACTIONS(2715), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91456,13 +91306,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33414] = 3, + [33234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 2, + ACTIONS(2693), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2700), 35, + ACTIONS(2691), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91498,32 +91348,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33459] = 5, + [33279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2819), 1, + ACTIONS(1302), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(1300), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - STATE(824), 1, - sym_attribute_specifier, - ACTIONS(2817), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [33324] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2414), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2815), 29, + STATE(667), 1, + sym_string_literal, + ACTIONS(2828), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2412), 30, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -91541,14 +91429,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [33508] = 3, + [33373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2686), 2, + ACTIONS(2713), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2684), 35, + ACTIONS(2711), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91584,15 +91476,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33553] = 3, + [33418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2698), 1, + ACTIONS(1294), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2696), 36, + anon_sym_RBRACE, + ACTIONS(1292), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -91626,13 +91518,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33598] = 3, + [33463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2678), 2, + ACTIONS(2685), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2676), 35, + ACTIONS(2683), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91668,13 +91560,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33643] = 3, + [33508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2690), 2, + ACTIONS(2725), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2688), 35, + ACTIONS(2723), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91710,13 +91602,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33688] = 3, + [33553] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 2, + ACTIONS(2834), 1, + anon_sym___attribute__, + STATE(808), 1, + sym_attribute_specifier, + ACTIONS(2832), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2830), 29, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [33602] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2689), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1292), 35, + ACTIONS(2687), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91752,21 +91688,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33733] = 5, + [33647] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2826), 1, + ACTIONS(2841), 1, anon_sym___attribute__, - STATE(822), 1, + STATE(824), 1, sym_attribute_specifier, - ACTIONS(2824), 6, + ACTIONS(2839), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2822), 29, + ACTIONS(2837), 29, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -91796,20 +91732,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [33782] = 5, + [33696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2411), 1, + ACTIONS(1298), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1296), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [33741] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2414), 1, anon_sym_LBRACK_LBRACK, STATE(663), 1, sym_string_literal, - ACTIONS(2806), 5, + ACTIONS(2828), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2409), 30, + ACTIONS(2412), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -91840,20 +91818,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33831] = 5, + [33790] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2411), 1, + ACTIONS(2414), 1, anon_sym_LBRACK_LBRACK, - STATE(664), 1, + STATE(666), 1, sym_string_literal, - ACTIONS(2806), 5, + ACTIONS(2828), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2409), 30, + ACTIONS(2412), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -91884,13 +91862,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33880] = 3, + [33839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2698), 2, + ACTIONS(2709), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2696), 35, + ACTIONS(2707), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91926,20 +91904,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33925] = 5, + [33884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2411), 1, + ACTIONS(2705), 2, anon_sym_LBRACK_LBRACK, - STATE(668), 1, + anon_sym_RBRACE, + ACTIONS(2703), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [33929] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2414), 1, + anon_sym_LBRACK_LBRACK, + STATE(665), 1, sym_string_literal, - ACTIONS(2806), 5, + ACTIONS(2828), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2409), 30, + ACTIONS(2412), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -91970,12 +91990,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33974] = 3, + [33978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 1, + ACTIONS(1294), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1300), 36, + ACTIONS(1292), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -92012,12 +92032,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34019] = 3, + [34023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 1, + ACTIONS(1302), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1248), 36, + ACTIONS(1300), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -92054,7 +92074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34064] = 3, + [34068] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1342), 2, @@ -92096,7 +92116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34109] = 3, + [34113] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1274), 2, @@ -92138,7 +92158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34154] = 3, + [34158] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1298), 2, @@ -92180,15 +92200,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34199] = 3, + [34203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 2, + ACTIONS(2709), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1248), 35, + ACTIONS(2707), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -92222,15 +92242,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34244] = 3, + [34248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2706), 2, + ACTIONS(1250), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2704), 35, + ACTIONS(1248), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -92264,13 +92284,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34289] = 3, + [34293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 2, + ACTIONS(1250), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1300), 35, + ACTIONS(1248), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -92306,10 +92326,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34334] = 3, + [34338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1172), 17, + ACTIONS(1168), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -92327,7 +92347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1174), 19, + ACTIONS(1170), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -92347,7 +92367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34378] = 3, + [34382] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1200), 17, @@ -92388,7 +92408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34422] = 3, + [34426] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1200), 17, @@ -92429,10 +92449,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34466] = 3, + [34470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 17, + ACTIONS(1176), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -92450,7 +92470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1122), 19, + ACTIONS(1178), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -92470,10 +92490,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34510] = 3, + [34514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1176), 17, + ACTIONS(1120), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -92491,7 +92511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1178), 19, + ACTIONS(1122), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -92511,10 +92531,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34554] = 3, + [34558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 17, + ACTIONS(1148), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -92532,7 +92552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1122), 19, + ACTIONS(1150), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -92552,10 +92572,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34598] = 3, + [34602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1148), 17, + ACTIONS(1168), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -92573,7 +92593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1150), 19, + ACTIONS(1170), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -92593,10 +92613,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34642] = 3, + [34646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1168), 17, + ACTIONS(1176), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -92614,7 +92634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1170), 19, + ACTIONS(1178), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -92634,10 +92654,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34686] = 3, + [34690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1168), 17, + ACTIONS(1172), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -92655,7 +92675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1170), 19, + ACTIONS(1174), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -92675,10 +92695,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34730] = 3, + [34734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1176), 17, + ACTIONS(1120), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -92696,7 +92716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1178), 19, + ACTIONS(1122), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -92716,69 +92736,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34774] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2829), 1, - sym_identifier, - ACTIONS(2831), 1, - anon_sym_LPAREN2, - ACTIONS(2833), 1, - anon_sym_STAR, - ACTIONS(2837), 1, - sym_primitive_type, - STATE(1109), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1366), 1, - sym__type_declarator, - STATE(1913), 1, - sym_ms_based_modifier, - ACTIONS(2751), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(954), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1110), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2749), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2835), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1423), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [34843] = 9, + [34778] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2646), 1, + ACTIONS(2669), 1, anon_sym_LPAREN2, - ACTIONS(2839), 1, + ACTIONS(2844), 1, anon_sym_COMMA, - ACTIONS(2842), 1, + ACTIONS(2847), 1, anon_sym_RPAREN, - STATE(811), 1, + STATE(810), 1, aux_sym_sized_type_specifier_repeat1, STATE(1658), 1, aux_sym__old_style_parameter_list_repeat1, @@ -92815,39 +92782,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [34898] = 16, + [34833] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2850), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2852), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2854), 1, anon_sym_STAR, - ACTIONS(2837), 1, + ACTIONS(2858), 1, sym_primitive_type, - STATE(1109), 1, + STATE(1108), 1, sym_ms_unaligned_ptr_modifier, - STATE(1355), 1, + STATE(1368), 1, sym__type_declarator, STATE(1913), 1, sym_ms_based_modifier, - ACTIONS(2751), 2, + ACTIONS(2762), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(956), 2, + STATE(955), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, STATE(1089), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2749), 3, + ACTIONS(2760), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(2835), 4, + ACTIONS(2856), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -92868,39 +92835,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [34967] = 16, + [34902] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2850), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2852), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2854), 1, anon_sym_STAR, - ACTIONS(2837), 1, + ACTIONS(2858), 1, sym_primitive_type, - STATE(1109), 1, + STATE(1108), 1, sym_ms_unaligned_ptr_modifier, - STATE(1355), 1, + STATE(1368), 1, sym__type_declarator, STATE(1913), 1, sym_ms_based_modifier, - ACTIONS(2751), 2, + ACTIONS(2762), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1016), 2, + STATE(1005), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, STATE(1089), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2749), 3, + ACTIONS(2760), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(2835), 4, + ACTIONS(2856), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -92921,33 +92888,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [35036] = 3, + [34971] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2847), 3, + ACTIONS(1753), 1, + anon_sym___based, + ACTIONS(2850), 1, + sym_identifier, + ACTIONS(2852), 1, anon_sym_LPAREN2, + ACTIONS(2854), 1, anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(2845), 32, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(2858), 1, + sym_primitive_type, + STATE(1108), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1367), 1, + sym__type_declarator, + STATE(1913), 1, + sym_ms_based_modifier, + ACTIONS(2762), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(953), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1109), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2760), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2856), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(1423), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -92956,44 +92941,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [35079] = 16, + [35040] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2850), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2852), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2854), 1, anon_sym_STAR, - ACTIONS(2837), 1, + ACTIONS(2858), 1, sym_primitive_type, - STATE(1109), 1, + STATE(1108), 1, sym_ms_unaligned_ptr_modifier, - STATE(1360), 1, + STATE(1361), 1, sym__type_declarator, STATE(1913), 1, sym_ms_based_modifier, - ACTIONS(2751), 2, + ACTIONS(2762), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1016), 2, + STATE(1005), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, STATE(1099), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2749), 3, + ACTIONS(2760), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(2835), 4, + ACTIONS(2856), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -93014,19 +92994,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [35148] = 8, + [35109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2852), 1, + ACTIONS(2862), 3, anon_sym_LPAREN2, - ACTIONS(2856), 1, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2860), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - STATE(811), 1, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [35152] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2867), 1, + anon_sym_LPAREN2, + ACTIONS(2871), 1, + anon_sym_LBRACK, + STATE(810), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(1710), 2, anon_sym_COMMA, anon_sym_STAR, - ACTIONS(2849), 2, + ACTIONS(2864), 2, anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, ACTIONS(1712), 4, @@ -93058,17 +93078,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [35200] = 7, + [35204] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2646), 1, + ACTIONS(2669), 1, anon_sym_LPAREN2, - STATE(811), 1, + STATE(810), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(1710), 2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(2859), 2, + ACTIONS(2874), 2, anon_sym_COMMA, anon_sym_RPAREN, ACTIONS(1712), 4, @@ -93101,425 +93121,405 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [35250] = 18, + [35254] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2269), 1, + ACTIONS(2346), 1, aux_sym_preproc_elif_token1, - ACTIONS(2866), 1, + ACTIONS(2881), 1, anon_sym_SLASH, - ACTIONS(2868), 1, + ACTIONS(2883), 1, + anon_sym_AMP_AMP, + ACTIONS(2885), 1, anon_sym_PIPE, - ACTIONS(2870), 1, + ACTIONS(2887), 1, anon_sym_CARET, - ACTIONS(2872), 1, + ACTIONS(2889), 1, anon_sym_AMP, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2862), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2864), 2, + ACTIONS(2879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2874), 2, + ACTIONS(2891), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2876), 2, + ACTIONS(2893), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2878), 2, + ACTIONS(2895), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2880), 2, + ACTIONS(2897), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 9, + ACTIONS(2348), 8, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_QMARK, sym_identifier, - [35321] = 21, + [35327] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2419), 1, + ACTIONS(2434), 1, aux_sym_preproc_elif_token1, - ACTIONS(2866), 1, + ACTIONS(2881), 1, anon_sym_SLASH, - ACTIONS(2868), 1, + ACTIONS(2883), 1, + anon_sym_AMP_AMP, + ACTIONS(2885), 1, anon_sym_PIPE, - ACTIONS(2870), 1, + ACTIONS(2887), 1, anon_sym_CARET, - ACTIONS(2872), 1, + ACTIONS(2889), 1, anon_sym_AMP, - ACTIONS(2882), 1, + ACTIONS(2899), 1, anon_sym_PIPE_PIPE, - ACTIONS(2884), 1, - anon_sym_AMP_AMP, - ACTIONS(2886), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2862), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2864), 2, + ACTIONS(2879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2874), 2, + ACTIONS(2891), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2876), 2, + ACTIONS(2893), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2878), 2, + ACTIONS(2895), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2880), 2, + ACTIONS(2897), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2417), 6, + ACTIONS(2432), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_identifier, - [35398] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2866), 1, - anon_sym_SLASH, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2864), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2269), 7, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2271), 16, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - sym_identifier, - [35453] = 21, + [35404] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2403), 1, + ACTIONS(2418), 1, aux_sym_preproc_elif_token1, - ACTIONS(2866), 1, + ACTIONS(2881), 1, anon_sym_SLASH, - ACTIONS(2868), 1, + ACTIONS(2883), 1, + anon_sym_AMP_AMP, + ACTIONS(2885), 1, anon_sym_PIPE, - ACTIONS(2870), 1, + ACTIONS(2887), 1, anon_sym_CARET, - ACTIONS(2872), 1, + ACTIONS(2889), 1, anon_sym_AMP, - ACTIONS(2882), 1, + ACTIONS(2899), 1, anon_sym_PIPE_PIPE, - ACTIONS(2884), 1, - anon_sym_AMP_AMP, - ACTIONS(2886), 1, + ACTIONS(2901), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2862), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2864), 2, + ACTIONS(2879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2874), 2, + ACTIONS(2891), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2876), 2, + ACTIONS(2893), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2878), 2, + ACTIONS(2895), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2880), 2, + ACTIONS(2897), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2401), 6, + ACTIONS(2416), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_identifier, - [35530] = 21, + [35481] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2866), 1, + ACTIONS(2881), 1, anon_sym_SLASH, - ACTIONS(2868), 1, - anon_sym_PIPE, - ACTIONS(2870), 1, - anon_sym_CARET, - ACTIONS(2872), 1, - anon_sym_AMP, - ACTIONS(2882), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2884), 1, - anon_sym_AMP_AMP, - ACTIONS(2886), 1, - anon_sym_QMARK, - ACTIONS(2890), 1, - aux_sym_preproc_elif_token1, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2862), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2864), 2, + ACTIONS(2879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2874), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2876), 2, + ACTIONS(2346), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2878), 2, + ACTIONS(2348), 16, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2880), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2888), 6, + anon_sym_QMARK, + sym_identifier, + [35538] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2269), 1, + anon_sym_LPAREN2, + ACTIONS(2271), 1, + anon_sym_LBRACK, + ACTIONS(2881), 1, + anon_sym_SLASH, + STATE(707), 1, + sym_argument_list, + ACTIONS(2273), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2877), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2879), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2897), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2346), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2348), 14, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK, sym_identifier, - [35607] = 19, + [35597] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2269), 1, - aux_sym_preproc_elif_token1, - ACTIONS(2866), 1, + ACTIONS(2881), 1, anon_sym_SLASH, - ACTIONS(2868), 1, - anon_sym_PIPE, - ACTIONS(2870), 1, - anon_sym_CARET, - ACTIONS(2872), 1, - anon_sym_AMP, - ACTIONS(2884), 1, - anon_sym_AMP_AMP, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2862), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2864), 2, + ACTIONS(2879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2874), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2876), 2, + ACTIONS(2893), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2878), 2, + ACTIONS(2895), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2880), 2, + ACTIONS(2897), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 8, + ACTIONS(2346), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2348), 12, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, sym_identifier, - [35680] = 21, + [35660] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2415), 1, - aux_sym_preproc_elif_token1, - ACTIONS(2866), 1, + ACTIONS(2881), 1, anon_sym_SLASH, - ACTIONS(2868), 1, - anon_sym_PIPE, - ACTIONS(2870), 1, - anon_sym_CARET, - ACTIONS(2872), 1, - anon_sym_AMP, - ACTIONS(2882), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2884), 1, - anon_sym_AMP_AMP, - ACTIONS(2886), 1, - anon_sym_QMARK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2862), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2864), 2, + ACTIONS(2879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2874), 2, + ACTIONS(2891), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2876), 2, + ACTIONS(2893), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2878), 2, + ACTIONS(2895), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2880), 2, + ACTIONS(2897), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2413), 6, + ACTIONS(2346), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2348), 10, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_QMARK, sym_identifier, - [35757] = 17, + [35725] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2866), 1, + ACTIONS(2881), 1, anon_sym_SLASH, - ACTIONS(2870), 1, - anon_sym_CARET, - ACTIONS(2872), 1, + ACTIONS(2889), 1, anon_sym_AMP, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2269), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2346), 2, aux_sym_preproc_elif_token1, anon_sym_PIPE, - ACTIONS(2862), 2, + ACTIONS(2877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2864), 2, + ACTIONS(2879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2874), 2, + ACTIONS(2891), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2876), 2, + ACTIONS(2893), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2878), 2, + ACTIONS(2895), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2880), 2, + ACTIONS(2897), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 9, + ACTIONS(2348), 10, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -93527,49 +93527,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_QMARK, sym_identifier, - [35826] = 16, + [35792] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2866), 1, + ACTIONS(2881), 1, anon_sym_SLASH, - ACTIONS(2872), 1, + ACTIONS(2887), 1, + anon_sym_CARET, + ACTIONS(2889), 1, anon_sym_AMP, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2269), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2346), 2, aux_sym_preproc_elif_token1, anon_sym_PIPE, - ACTIONS(2862), 2, + ACTIONS(2877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2864), 2, + ACTIONS(2879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2874), 2, + ACTIONS(2891), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2876), 2, + ACTIONS(2893), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2878), 2, + ACTIONS(2895), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2880), 2, + ACTIONS(2897), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 10, + ACTIONS(2348), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -93577,49 +93580,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_QMARK, sym_identifier, - [35893] = 15, + [35861] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2866), 1, + ACTIONS(2346), 1, + aux_sym_preproc_elif_token1, + ACTIONS(2881), 1, anon_sym_SLASH, - STATE(720), 1, + ACTIONS(2885), 1, + anon_sym_PIPE, + ACTIONS(2887), 1, + anon_sym_CARET, + ACTIONS(2889), 1, + anon_sym_AMP, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2862), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2864), 2, + ACTIONS(2879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2874), 2, + ACTIONS(2891), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2876), 2, + ACTIONS(2893), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2878), 2, + ACTIONS(2895), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2880), 2, + ACTIONS(2897), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2269), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2271), 10, + ACTIONS(2348), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -93627,135 +93633,149 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_QMARK, sym_identifier, - [35958] = 14, + [35932] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2866), 1, + ACTIONS(2881), 1, anon_sym_SLASH, - STATE(720), 1, + ACTIONS(2883), 1, + anon_sym_AMP_AMP, + ACTIONS(2885), 1, + anon_sym_PIPE, + ACTIONS(2887), 1, + anon_sym_CARET, + ACTIONS(2889), 1, + anon_sym_AMP, + ACTIONS(2899), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2901), 1, + anon_sym_QMARK, + ACTIONS(2905), 1, + aux_sym_preproc_elif_token1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2862), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2864), 2, + ACTIONS(2879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2876), 2, + ACTIONS(2891), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2893), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2878), 2, + ACTIONS(2895), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2880), 2, + ACTIONS(2897), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2269), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2271), 12, + ACTIONS(2903), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, sym_identifier, - [36021] = 12, + [36009] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2866), 1, + ACTIONS(2426), 1, + aux_sym_preproc_elif_token1, + ACTIONS(2881), 1, anon_sym_SLASH, - STATE(720), 1, + ACTIONS(2883), 1, + anon_sym_AMP_AMP, + ACTIONS(2885), 1, + anon_sym_PIPE, + ACTIONS(2887), 1, + anon_sym_CARET, + ACTIONS(2889), 1, + anon_sym_AMP, + ACTIONS(2899), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2901), 1, + anon_sym_QMARK, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2862), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2877), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2864), 2, + ACTIONS(2879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2880), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2269), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(2891), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2893), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2271), 14, + ACTIONS(2895), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2897), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2424), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, sym_identifier, - [36080] = 11, + [36086] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2866), 1, + ACTIONS(2881), 1, anon_sym_SLASH, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2862), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2864), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2879), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2269), 5, + ACTIONS(2346), 7, aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2271), 16, + ACTIONS(2348), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -93772,160 +93792,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_QMARK, sym_identifier, - [36137] = 12, + [36141] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2892), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2894), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2269), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2271), 14, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + ACTIONS(2913), 1, anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [36195] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2896), 1, - anon_sym_SLASH, - STATE(720), 1, + ACTIONS(2919), 1, + anon_sym_AMP, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2269), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2271), 10, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2348), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [36259] = 17, + [36211] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2269), 1, - anon_sym_PIPE, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, - anon_sym_CARET, - ACTIONS(2908), 1, - anon_sym_AMP, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, + ACTIONS(2927), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2900), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2346), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2271), 9, + ACTIONS(2348), 14, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [36327] = 4, + [36269] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2347), 1, + ACTIONS(2362), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2910), 1, + ACTIONS(2929), 1, anon_sym_typedef, - ACTIONS(2345), 30, + ACTIONS(2360), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -93956,48 +93928,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36369] = 17, + [36311] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2271), 9, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2348), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -94007,65 +93979,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [36437] = 18, + [36379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2896), 1, - anon_sym_SLASH, - ACTIONS(2906), 1, - anon_sym_CARET, - ACTIONS(2908), 1, - anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2892), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2894), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2902), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2904), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2271), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, + ACTIONS(1122), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1120), 30, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [36507] = 3, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [36419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2916), 2, + ACTIONS(2931), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(2787), 30, + ACTIONS(2802), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94096,14 +94053,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36547] = 4, + [36459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2347), 1, + ACTIONS(1170), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2918), 1, - anon_sym_typedef, - ACTIONS(2345), 30, + anon_sym_LBRACE, + ACTIONS(1168), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94134,34 +94090,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36589] = 10, + [36499] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2894), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2269), 6, + ACTIONS(2346), 6, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2271), 16, + ACTIONS(2348), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -94178,14 +94134,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [36643] = 4, + [36553] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2347), 1, + ACTIONS(2362), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2920), 1, + ACTIONS(2933), 1, anon_sym_typedef, - ACTIONS(2345), 30, + ACTIONS(2360), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94216,13 +94172,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36685] = 3, + [36595] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1202), 2, + ACTIONS(2362), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1200), 30, + ACTIONS(2935), 1, + anon_sym_typedef, + ACTIONS(2360), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94253,13 +94210,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36725] = 3, + [36637] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1202), 2, + ACTIONS(2269), 1, + anon_sym_LPAREN2, + ACTIONS(2271), 1, + anon_sym_LBRACK, + ACTIONS(2911), 1, + anon_sym_SLASH, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, + anon_sym_CARET, + ACTIONS(2919), 1, + anon_sym_AMP, + ACTIONS(2937), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2939), 1, + anon_sym_QMARK, + STATE(707), 1, + sym_argument_list, + ACTIONS(2273), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2909), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2921), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2923), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2925), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2424), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + [36711] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2362), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1200), 30, + ACTIONS(2941), 1, + anon_sym_typedef, + ACTIONS(2360), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94290,7 +94302,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36765] = 3, + [36753] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2269), 1, + anon_sym_LPAREN2, + ACTIONS(2271), 1, + anon_sym_LBRACK, + ACTIONS(2911), 1, + anon_sym_SLASH, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, + anon_sym_CARET, + ACTIONS(2919), 1, + anon_sym_AMP, + ACTIONS(2937), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2939), 1, + anon_sym_QMARK, + STATE(707), 1, + sym_argument_list, + ACTIONS(2273), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2909), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2921), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2923), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2925), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2416), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + [36827] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1174), 2, @@ -94327,63 +94393,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36805] = 16, + [36867] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2269), 1, - anon_sym_PIPE, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2908), 1, - anon_sym_AMP, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2346), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2271), 10, + ACTIONS(2348), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [36871] = 3, + [36923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1178), 2, + ACTIONS(1122), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1176), 30, + ACTIONS(1120), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94414,58 +94475,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36911] = 11, + [36963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2896), 1, - anon_sym_SLASH, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2892), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2894), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2269), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2271), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, + ACTIONS(1178), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1176), 30, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [36967] = 3, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [37003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1178), 2, + ACTIONS(2945), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1176), 30, + ACTIONS(2943), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94496,13 +94549,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37007] = 3, + [37043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2924), 2, + ACTIONS(1178), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(2922), 30, + ACTIONS(1176), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94533,42 +94586,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37047] = 14, + [37083] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2269), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2346), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(2892), 2, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2271), 12, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2348), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -94581,98 +94634,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [37109] = 3, + [37145] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1122), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1120), 30, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(2269), 1, + anon_sym_LPAREN2, + ACTIONS(2271), 1, + anon_sym_LBRACK, + ACTIONS(2911), 1, + anon_sym_SLASH, + STATE(707), 1, + sym_argument_list, + ACTIONS(2273), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2346), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2909), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2921), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2923), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2925), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2348), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [37149] = 20, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [37209] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2346), 1, + anon_sym_PIPE, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, - anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, - anon_sym_QMARK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2413), 6, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2348), 10, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - [37223] = 3, + anon_sym_QMARK, + [37275] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1170), 2, @@ -94709,13 +94770,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37263] = 3, + [37315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1122), 2, + ACTIONS(1150), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1120), 30, + ACTIONS(1148), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94746,13 +94807,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37303] = 3, + [37355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2932), 2, + ACTIONS(2949), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(2930), 30, + ACTIONS(2947), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94783,13 +94844,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37343] = 3, + [37395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1170), 2, + ACTIONS(1202), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1168), 30, + ACTIONS(1200), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94820,13 +94881,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37383] = 3, + [37435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1150), 2, + ACTIONS(1202), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1148), 30, + ACTIONS(1200), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -94857,153 +94918,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37423] = 20, + [37475] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2417), 6, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2432), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - [37497] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2347), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2934), 1, - anon_sym_typedef, - ACTIONS(2345), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [37539] = 20, + [37549] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2346), 1, + anon_sym_PIPE, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, - anon_sym_QMARK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2401), 6, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2348), 9, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - [37613] = 15, + anon_sym_QMARK, + [37617] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1749), 1, @@ -95012,25 +95032,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2756), 1, sym_identifier, - ACTIONS(2753), 1, + ACTIONS(2764), 1, anon_sym_LBRACK, - STATE(1312), 1, + STATE(1321), 1, sym__declarator, - STATE(1446), 1, + STATE(1475), 1, sym__abstract_declarator, - STATE(1486), 1, + STATE(1488), 1, sym_parameter_list, STATE(1803), 1, sym_ms_based_modifier, - ACTIONS(2936), 2, + ACTIONS(2758), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1113), 2, + STATE(1114), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1496), 4, + STATE(1487), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, @@ -95051,7 +95071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [37676] = 15, + [37680] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1749), 1, @@ -95060,25 +95080,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2756), 1, sym_identifier, - ACTIONS(2753), 1, + ACTIONS(2764), 1, anon_sym_LBRACK, - STATE(1321), 1, + STATE(1312), 1, sym__declarator, - STATE(1475), 1, + STATE(1459), 1, sym__abstract_declarator, - STATE(1486), 1, + STATE(1488), 1, sym_parameter_list, STATE(1803), 1, sym_ms_based_modifier, - ACTIONS(2780), 2, + ACTIONS(2951), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1113), 2, + STATE(1114), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1496), 4, + STATE(1487), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, @@ -95099,29 +95119,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [37739] = 16, + [37743] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(1867), 1, + ACTIONS(1879), 1, anon_sym_LPAREN2, - ACTIONS(1869), 1, + ACTIONS(1881), 1, anon_sym_STAR, - ACTIONS(2749), 1, + ACTIONS(2760), 1, sym_ms_restrict_modifier, - ACTIONS(2753), 1, + ACTIONS(2764), 1, anon_sym_LBRACK, - STATE(1109), 1, + STATE(1108), 1, sym_ms_unaligned_ptr_modifier, STATE(1474), 1, sym__abstract_declarator, - STATE(1486), 1, + STATE(1488), 1, sym_parameter_list, - ACTIONS(2940), 2, + ACTIONS(2955), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(2942), 2, + ACTIONS(2957), 2, anon_sym__unaligned, anon_sym___unaligned, STATE(1004), 2, @@ -95130,16 +95150,16 @@ static const uint16_t ts_small_parse_table[] = { STATE(1125), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2747), 3, + ACTIONS(2788), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1496), 4, + STATE(1487), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2938), 8, + ACTIONS(2953), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -95148,47 +95168,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [37804] = 16, + [37808] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(1867), 1, + ACTIONS(1879), 1, anon_sym_LPAREN2, - ACTIONS(1869), 1, + ACTIONS(1881), 1, anon_sym_STAR, - ACTIONS(2749), 1, + ACTIONS(2760), 1, sym_ms_restrict_modifier, - ACTIONS(2753), 1, + ACTIONS(2764), 1, anon_sym_LBRACK, - STATE(1109), 1, + STATE(1108), 1, sym_ms_unaligned_ptr_modifier, STATE(1475), 1, sym__abstract_declarator, - STATE(1486), 1, + STATE(1488), 1, sym_parameter_list, - ACTIONS(2940), 2, + ACTIONS(2955), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(2942), 2, + ACTIONS(2957), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1016), 2, + STATE(1005), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, STATE(1124), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2780), 3, + ACTIONS(2758), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1496), 4, + STATE(1487), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2938), 8, + ACTIONS(2953), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -95197,90 +95217,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [37869] = 14, + [37873] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2745), 1, - sym_identifier, - ACTIONS(2944), 1, - anon_sym_LPAREN2, - ACTIONS(2946), 1, - anon_sym_STAR, - STATE(1109), 1, + STATE(1108), 1, sym_ms_unaligned_ptr_modifier, - STATE(1312), 1, - sym__declarator, - STATE(1803), 1, - sym_ms_based_modifier, - ACTIONS(2751), 2, + ACTIONS(2966), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1016), 2, + STATE(1005), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1137), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2749), 3, + ACTIONS(2963), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1354), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [37929] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2745), 1, - sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2961), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2946), 1, anon_sym_STAR, - STATE(1109), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1303), 1, - sym__declarator, - STATE(1803), 1, - sym_ms_based_modifier, - ACTIONS(2751), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1007), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1141), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2749), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1354), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2959), 16, anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -95289,42 +95254,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [37989] = 14, + sym_primitive_type, + sym_identifier, + [37919] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2969), 1, sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2971), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2973), 1, anon_sym_STAR, - STATE(1109), 1, + STATE(1108), 1, sym_ms_unaligned_ptr_modifier, - STATE(1321), 1, - sym__declarator, - STATE(1803), 1, + STATE(1329), 1, + sym__field_declarator, + STATE(1929), 1, sym_ms_based_modifier, - ACTIONS(2751), 2, + ACTIONS(2762), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1016), 2, + STATE(1005), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1136), 2, + STATE(1130), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2749), 3, + ACTIONS(2760), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1354), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1398), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -95335,72 +95302,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [38049] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2948), 11, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - ACTIONS(2950), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - [38087] = 14, + [37979] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2952), 1, + ACTIONS(2969), 1, sym_identifier, - ACTIONS(2954), 1, + ACTIONS(2971), 1, anon_sym_LPAREN2, - ACTIONS(2956), 1, + ACTIONS(2973), 1, anon_sym_STAR, - STATE(1109), 1, + STATE(1108), 1, sym_ms_unaligned_ptr_modifier, - STATE(1344), 1, + STATE(1336), 1, sym__field_declarator, - STATE(1817), 1, + STATE(1929), 1, sym_ms_based_modifier, - ACTIONS(2751), 2, + ACTIONS(2762), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1015), 2, + STATE(1005), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1130), 2, + STATE(1138), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2749), 3, + ACTIONS(2760), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1399), 5, + STATE(1398), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -95416,42 +95348,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [38147] = 14, + [38039] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2952), 1, + ACTIONS(2756), 1, sym_identifier, - ACTIONS(2954), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2956), 1, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(1109), 1, + STATE(1108), 1, sym_ms_unaligned_ptr_modifier, - STATE(1344), 1, - sym__field_declarator, - STATE(1817), 1, + STATE(1321), 1, + sym__declarator, + STATE(1803), 1, sym_ms_based_modifier, - ACTIONS(2751), 2, + ACTIONS(2762), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1016), 2, + STATE(1014), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1130), 2, + STATE(1136), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2749), 3, + ACTIONS(2760), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1399), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1354), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -95462,42 +95394,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [38207] = 14, + [38099] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2969), 1, sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2971), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2973), 1, anon_sym_STAR, - STATE(1109), 1, + STATE(1108), 1, sym_ms_unaligned_ptr_modifier, - STATE(1321), 1, - sym__declarator, - STATE(1803), 1, + STATE(1335), 1, + sym__field_declarator, + STATE(1929), 1, sym_ms_based_modifier, - ACTIONS(2751), 2, + ACTIONS(2762), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1005), 2, + STATE(1006), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1136), 2, + STATE(1131), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2749), 3, + ACTIONS(2760), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1354), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1398), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -95508,10 +95440,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [38267] = 3, + [38159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2958), 11, + ACTIONS(2979), 11, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, @@ -95523,7 +95455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(2960), 19, + ACTIONS(2981), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -95543,56 +95475,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - [38305] = 14, + [38197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2952), 1, + ACTIONS(2983), 11, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, sym_identifier, - ACTIONS(2954), 1, + ACTIONS(2985), 19, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2956), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - STATE(1109), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1335), 1, - sym__field_declarator, - STATE(1817), 1, - sym_ms_based_modifier, - ACTIONS(2751), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1010), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1131), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2749), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1399), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [38365] = 3, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + [38235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2962), 11, + ACTIONS(2987), 11, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, @@ -95604,7 +95525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(2964), 19, + ACTIONS(2989), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -95624,37 +95545,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - [38403] = 14, + [38273] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2952), 1, + ACTIONS(2756), 1, sym_identifier, - ACTIONS(2954), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2956), 1, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(1109), 1, + STATE(1108), 1, sym_ms_unaligned_ptr_modifier, - STATE(1334), 1, + STATE(1321), 1, + sym__declarator, + STATE(1803), 1, + sym_ms_based_modifier, + ACTIONS(2762), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1005), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1136), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2760), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1354), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [38333] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1753), 1, + anon_sym___based, + ACTIONS(2756), 1, + sym_identifier, + ACTIONS(2975), 1, + anon_sym_LPAREN2, + ACTIONS(2977), 1, + anon_sym_STAR, + STATE(1108), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1312), 1, + sym__declarator, + STATE(1803), 1, + sym_ms_based_modifier, + ACTIONS(2762), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1005), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1137), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2760), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1354), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [38393] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1753), 1, + anon_sym___based, + ACTIONS(2969), 1, + sym_identifier, + ACTIONS(2971), 1, + anon_sym_LPAREN2, + ACTIONS(2973), 1, + anon_sym_STAR, + STATE(1108), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1329), 1, sym__field_declarator, - STATE(1817), 1, + STATE(1929), 1, sym_ms_based_modifier, - ACTIONS(2751), 2, + ACTIONS(2762), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1016), 2, + STATE(1007), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1138), 2, + STATE(1130), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2749), 3, + ACTIONS(2760), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1399), 5, + STATE(1398), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -95670,35 +95683,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [38463] = 7, + [38453] = 14, ACTIONS(3), 1, sym_comment, - STATE(1109), 1, + ACTIONS(1753), 1, + anon_sym___based, + ACTIONS(2756), 1, + sym_identifier, + ACTIONS(2975), 1, + anon_sym_LPAREN2, + ACTIONS(2977), 1, + anon_sym_STAR, + STATE(1108), 1, sym_ms_unaligned_ptr_modifier, - ACTIONS(2973), 2, + STATE(1303), 1, + sym__declarator, + STATE(1803), 1, + sym_ms_based_modifier, + ACTIONS(2762), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1016), 2, + STATE(1013), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2970), 3, + STATE(1141), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2760), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(2968), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2966), 16, + STATE(1354), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -95707,12 +95729,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [38509] = 3, + [38513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 11, + ACTIONS(2991), 11, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, @@ -95724,7 +95744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(2978), 19, + ACTIONS(2993), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -95744,530 +95764,530 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - [38547] = 21, + [38551] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(2995), 1, anon_sym_COMMA, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2982), 3, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2997), 3, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, - [38621] = 22, + [38625] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(2984), 1, + ACTIONS(2999), 1, anon_sym_COMMA, - ACTIONS(2986), 1, + ACTIONS(3001), 1, anon_sym_RPAREN, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - STATE(1672), 1, + STATE(1567), 1, aux_sym_argument_list_repeat1, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [38696] = 20, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [38700] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2988), 3, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3003), 3, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, - [38767] = 22, + [38771] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(2984), 1, + ACTIONS(2999), 1, anon_sym_COMMA, - ACTIONS(2990), 1, + ACTIONS(3005), 1, anon_sym_RPAREN, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - STATE(1567), 1, + STATE(1583), 1, aux_sym_argument_list_repeat1, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [38842] = 22, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [38846] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(2984), 1, + ACTIONS(2999), 1, anon_sym_COMMA, - ACTIONS(2992), 1, + ACTIONS(3007), 1, anon_sym_RPAREN, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - STATE(1679), 1, + STATE(1672), 1, aux_sym_argument_list_repeat1, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [38917] = 22, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [38921] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(2984), 1, + ACTIONS(3009), 1, anon_sym_COMMA, - ACTIONS(2994), 1, + ACTIONS(3011), 1, anon_sym_RPAREN, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - STATE(1583), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + STATE(1677), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [38992] = 22, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [38996] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(2996), 1, + ACTIONS(2999), 1, anon_sym_COMMA, - ACTIONS(2998), 1, - anon_sym_RBRACE, - STATE(720), 1, + ACTIONS(3013), 1, + anon_sym_RPAREN, + STATE(707), 1, sym_argument_list, - STATE(1616), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + STATE(1679), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39067] = 22, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [39071] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(3000), 1, + ACTIONS(3015), 1, anon_sym_COMMA, - ACTIONS(3002), 1, - anon_sym_RPAREN, - STATE(720), 1, + ACTIONS(3017), 1, + anon_sym_RBRACE, + STATE(707), 1, sym_argument_list, - STATE(1677), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + STATE(1616), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39142] = 21, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [39146] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(2995), 1, anon_sym_COMMA, - ACTIONS(3004), 1, + ACTIONS(3019), 1, anon_sym_SEMI, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39214] = 20, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [39218] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2903), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3006), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [39284] = 13, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [39288] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -96276,17 +96296,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1819), 1, + ACTIONS(1831), 1, sym_identifier, - ACTIONS(3008), 1, + ACTIONS(3021), 1, anon_sym_enum, STATE(1123), 1, sym__type_specifier, STATE(1139), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1868), 1, + STATE(1815), 1, sym_type_descriptor, - STATE(1107), 2, + STATE(1103), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1667), 4, @@ -96294,50 +96314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [39340] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1669), 1, - anon_sym_enum, - ACTIONS(3010), 1, - sym_identifier, - ACTIONS(3014), 1, - sym_primitive_type, - STATE(1176), 1, - sym__type_specifier, - STATE(1223), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1284), 1, - sym__type_definition_type, - STATE(1105), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3012), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -96353,259 +96330,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39396] = 18, + [39344] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2255), 1, - anon_sym_DASH_GT, ACTIONS(2269), 1, - anon_sym_PIPE, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(3020), 1, - anon_sym_SLASH, - ACTIONS(3022), 1, - anon_sym_CARET, - ACTIONS(3024), 1, - anon_sym_AMP, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3016), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3018), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3028), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3030), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2271), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [39462] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, - anon_sym_CARET, - ACTIONS(2908), 1, - anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, + ACTIONS(2913), 1, anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, - anon_sym_QMARK, - ACTIONS(2980), 1, - anon_sym_COMMA, - ACTIONS(3034), 1, - anon_sym_COLON, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2892), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2894), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2902), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2904), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [39534] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2896), 1, - anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(2995), 1, anon_sym_COMMA, - ACTIONS(3036), 1, + ACTIONS(3023), 1, anon_sym_RPAREN, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2894), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2902), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2904), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [39606] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2896), 1, - anon_sym_SLASH, - ACTIONS(2906), 1, - anon_sym_CARET, - ACTIONS(2908), 1, - anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, - anon_sym_QMARK, - ACTIONS(2980), 1, - anon_sym_COMMA, - ACTIONS(3038), 1, - anon_sym_SEMI, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39678] = 21, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [39416] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2273), 1, + anon_sym_DASH_GT, + ACTIONS(2750), 1, + anon_sym_LPAREN2, + ACTIONS(2752), 1, + anon_sym_DOT, + ACTIONS(3029), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(3031), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3033), 1, + anon_sym_AMP_AMP, + ACTIONS(3035), 1, + anon_sym_PIPE, + ACTIONS(3037), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(3039), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(3049), 1, anon_sym_QMARK, - ACTIONS(2980), 1, - anon_sym_COMMA, - ACTIONS(3040), 1, - anon_sym_SEMI, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2424), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(3027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(3041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(3043), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(3045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39750] = 13, + ACTIONS(3047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [39488] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1669), 1, + anon_sym_enum, + ACTIONS(1831), 1, + sym_identifier, + STATE(1123), 1, + sym__type_specifier, + STATE(1139), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1960), 1, + sym_type_descriptor, + STATE(1102), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1667), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [39544] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -96614,25 +96484,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1669), 1, anon_sym_enum, - ACTIONS(3010), 1, + ACTIONS(3051), 1, sym_identifier, - ACTIONS(3014), 1, + ACTIONS(3055), 1, sym_primitive_type, STATE(1176), 1, sym__type_specifier, STATE(1223), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1280), 1, + STATE(1284), 1, sym__type_definition_type, STATE(1105), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3012), 4, + ACTIONS(3053), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -96648,81 +96518,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39806] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2255), 1, - anon_sym_DASH_GT, - ACTIONS(2269), 1, - anon_sym_PIPE, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(3020), 1, - anon_sym_SLASH, - ACTIONS(3024), 1, - anon_sym_AMP, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3016), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3018), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3028), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3030), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2271), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [39870] = 13, + [39600] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - sym_primitive_type, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, ACTIONS(1669), 1, anon_sym_enum, - ACTIONS(1819), 1, + ACTIONS(3051), 1, sym_identifier, - STATE(1123), 1, + ACTIONS(3055), 1, + sym_primitive_type, + STATE(1176), 1, sym__type_specifier, - STATE(1139), 1, + STATE(1223), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1960), 1, - sym_type_descriptor, - STATE(1102), 2, + STATE(1280), 1, + sym__type_definition_type, + STATE(1105), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1667), 4, + ACTIONS(3053), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -96738,7 +96561,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39926] = 13, + [39656] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2269), 1, + anon_sym_LPAREN2, + ACTIONS(2271), 1, + anon_sym_LBRACK, + ACTIONS(2911), 1, + anon_sym_SLASH, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, + anon_sym_CARET, + ACTIONS(2919), 1, + anon_sym_AMP, + ACTIONS(2937), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2939), 1, + anon_sym_QMARK, + ACTIONS(2995), 1, + anon_sym_COMMA, + ACTIONS(3057), 1, + anon_sym_SEMI, + STATE(707), 1, + sym_argument_list, + ACTIONS(2273), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2909), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2921), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2923), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2925), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [39728] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2271), 1, + anon_sym_LBRACK, + ACTIONS(2273), 1, + anon_sym_DASH_GT, + ACTIONS(2750), 1, + anon_sym_LPAREN2, + ACTIONS(2752), 1, + anon_sym_DOT, + ACTIONS(3029), 1, + anon_sym_SLASH, + STATE(707), 1, + sym_argument_list, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2346), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3025), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3027), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3041), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2348), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [39790] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -96749,7 +96669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1669), 1, anon_sym_enum, - ACTIONS(1819), 1, + ACTIONS(1831), 1, sym_identifier, STATE(1123), 1, sym__type_specifier, @@ -96765,7 +96685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -96781,208 +96701,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39982] = 21, + [39846] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2273), 1, + anon_sym_DASH_GT, + ACTIONS(2346), 1, + anon_sym_PIPE, + ACTIONS(2750), 1, + anon_sym_LPAREN2, + ACTIONS(2752), 1, + anon_sym_DOT, + ACTIONS(3029), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(3037), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(3039), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, - anon_sym_QMARK, - ACTIONS(2980), 1, - anon_sym_COMMA, - ACTIONS(3042), 1, - anon_sym_SEMI, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(3025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(3027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(3041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(3043), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(3045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40054] = 18, + ACTIONS(3047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2348), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [39912] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2255), 1, - anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(3020), 1, + ACTIONS(2271), 1, + anon_sym_LBRACK, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(3022), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(3024), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, - STATE(720), 1, + ACTIONS(2937), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2939), 1, + anon_sym_QMARK, + ACTIONS(2995), 1, + anon_sym_COMMA, + ACTIONS(3059), 1, + anon_sym_SEMI, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2273), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3016), 2, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(2927), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [40120] = 21, + [39984] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(2995), 1, anon_sym_COMMA, - ACTIONS(3046), 1, + ACTIONS(3061), 1, anon_sym_SEMI, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2925), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [40056] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2271), 1, + anon_sym_LBRACK, + ACTIONS(2273), 1, + anon_sym_DASH_GT, + ACTIONS(2750), 1, + anon_sym_LPAREN2, + ACTIONS(2752), 1, + anon_sym_DOT, + ACTIONS(3029), 1, + anon_sym_SLASH, + STATE(707), 1, + sym_argument_list, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2346), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3025), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3027), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3043), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(3045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40192] = 21, + ACTIONS(3047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2348), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + [40116] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(2995), 1, anon_sym_COMMA, - ACTIONS(3048), 1, + ACTIONS(3063), 1, anon_sym_COLON, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40264] = 13, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [40188] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -96991,9 +96956,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1669), 1, anon_sym_enum, - ACTIONS(3010), 1, + ACTIONS(3051), 1, sym_identifier, - ACTIONS(3014), 1, + ACTIONS(3055), 1, sym_primitive_type, STATE(1176), 1, sym__type_specifier, @@ -97004,12 +96969,55 @@ static const uint16_t ts_small_parse_table[] = { STATE(1105), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3012), 4, + ACTIONS(3053), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [40244] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1831), 1, + sym_identifier, + ACTIONS(3021), 1, + anon_sym_enum, + STATE(1123), 1, + sym__type_specifier, + STATE(1139), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1868), 1, + sym_type_descriptor, + STATE(1103), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1667), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -97025,394 +97033,303 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [40320] = 20, + [40300] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3050), 2, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3065), 2, anon_sym_COMMA, anon_sym_SEMI, - [40390] = 16, + [40370] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2255), 1, - anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(3020), 1, + ACTIONS(2271), 1, + anon_sym_LBRACK, + ACTIONS(2911), 1, anon_sym_SLASH, - STATE(720), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, + anon_sym_CARET, + ACTIONS(2919), 1, + anon_sym_AMP, + ACTIONS(2937), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2939), 1, + anon_sym_QMARK, + ACTIONS(2995), 1, + anon_sym_COMMA, + ACTIONS(3067), 1, + anon_sym_COLON, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2273), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2269), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3016), 2, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(2927), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [40452] = 21, + [40442] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(2980), 1, - anon_sym_COMMA, - ACTIONS(3052), 1, - anon_sym_COLON, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40524] = 21, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3069), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [40512] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(2995), 1, anon_sym_COMMA, - ACTIONS(3054), 1, + ACTIONS(3071), 1, anon_sym_RPAREN, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40596] = 15, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [40584] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2273), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2752), 1, anon_sym_DOT, - ACTIONS(3020), 1, + ACTIONS(3029), 1, anon_sym_SLASH, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2269), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3016), 2, + ACTIONS(3025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(3027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3028), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3030), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(3047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 8, + ACTIONS(2346), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2348), 10, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, - [40656] = 20, + [40640] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - STATE(720), 1, + ACTIONS(2995), 1, + anon_sym_COMMA, + ACTIONS(3073), 1, + anon_sym_SEMI, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2894), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2902), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2904), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3056), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [40726] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2255), 1, - anon_sym_DASH_GT, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(3020), 1, - anon_sym_SLASH, - ACTIONS(3022), 1, - anon_sym_CARET, - ACTIONS(3024), 1, - anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3058), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3060), 1, - anon_sym_AMP_AMP, - ACTIONS(3062), 1, - anon_sym_QMARK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2401), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3016), 2, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [40798] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2255), 1, - anon_sym_DASH_GT, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(3020), 1, - anon_sym_SLASH, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3016), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3018), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3032), 2, + ACTIONS(2927), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2269), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2271), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [40854] = 13, + [40712] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -97421,9 +97338,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1669), 1, anon_sym_enum, - ACTIONS(3010), 1, + ACTIONS(3051), 1, sym_identifier, - ACTIONS(3014), 1, + ACTIONS(3055), 1, sym_primitive_type, STATE(1176), 1, sym__type_specifier, @@ -97434,12 +97351,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(1105), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3012), 4, + ACTIONS(3053), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -97455,361 +97372,301 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [40910] = 19, + [40768] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2273), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2752), 1, anon_sym_DOT, - ACTIONS(3020), 1, + ACTIONS(3029), 1, anon_sym_SLASH, - ACTIONS(3022), 1, + ACTIONS(3035), 1, + anon_sym_PIPE, + ACTIONS(3037), 1, anon_sym_CARET, - ACTIONS(3024), 1, + ACTIONS(3039), 1, anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3060), 1, - anon_sym_AMP_AMP, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3016), 2, + ACTIONS(3025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(3027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(3041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(3043), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(3045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(3047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2271), 4, + ACTIONS(2348), 5, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, - [40978] = 21, + [40834] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(2995), 1, anon_sym_COMMA, - ACTIONS(3064), 1, + ACTIONS(3075), 1, anon_sym_COLON, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2894), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2902), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2904), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [41050] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2896), 1, - anon_sym_SLASH, - ACTIONS(2906), 1, - anon_sym_CARET, - ACTIONS(2908), 1, - anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, - anon_sym_QMARK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3066), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [41120] = 21, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [40906] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(2995), 1, anon_sym_COMMA, - ACTIONS(3068), 1, - anon_sym_SEMI, - STATE(720), 1, + ACTIONS(3077), 1, + anon_sym_RPAREN, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41192] = 21, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [40978] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(2995), 1, anon_sym_COMMA, - ACTIONS(3070), 1, - anon_sym_RPAREN, - STATE(720), 1, + ACTIONS(3079), 1, + anon_sym_SEMI, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41264] = 21, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [41050] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2273), 1, + anon_sym_DASH_GT, + ACTIONS(2750), 1, + anon_sym_LPAREN2, + ACTIONS(2752), 1, + anon_sym_DOT, + ACTIONS(3029), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(3031), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3033), 1, + anon_sym_AMP_AMP, + ACTIONS(3035), 1, + anon_sym_PIPE, + ACTIONS(3037), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(3039), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(3049), 1, anon_sym_QMARK, - ACTIONS(2980), 1, - anon_sym_COMMA, - ACTIONS(3072), 1, - anon_sym_RPAREN, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2416), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(3027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(3041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(3043), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(3045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41336] = 21, + ACTIONS(3047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [41122] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2273), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2752), 1, anon_sym_DOT, - ACTIONS(3020), 1, + ACTIONS(3029), 1, anon_sym_SLASH, - ACTIONS(3022), 1, - anon_sym_CARET, - ACTIONS(3024), 1, - anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3058), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3060), 1, - anon_sym_AMP_AMP, - ACTIONS(3062), 1, - anon_sym_QMARK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2413), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3016), 2, + ACTIONS(3025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(3027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(2346), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(2348), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41408] = 13, + anon_sym_RBRACK, + anon_sym_QMARK, + [41176] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -97818,9 +97675,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1669), 1, anon_sym_enum, - ACTIONS(3010), 1, + ACTIONS(3051), 1, sym_identifier, - ACTIONS(3014), 1, + ACTIONS(3055), 1, sym_primitive_type, STATE(1176), 1, sym__type_specifier, @@ -97831,12 +97688,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(1105), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3012), 4, + ACTIONS(3053), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -97852,48 +97709,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [41464] = 11, + [41232] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2269), 1, + anon_sym_LPAREN2, + ACTIONS(2271), 1, + anon_sym_LBRACK, + ACTIONS(2911), 1, + anon_sym_SLASH, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, + anon_sym_CARET, + ACTIONS(2919), 1, + anon_sym_AMP, + ACTIONS(2937), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2939), 1, + anon_sym_QMARK, + ACTIONS(2995), 1, + anon_sym_COMMA, + ACTIONS(3081), 1, + anon_sym_RPAREN, + STATE(707), 1, + sym_argument_list, + ACTIONS(2273), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2909), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2921), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2923), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2925), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [41304] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2269), 1, + anon_sym_LPAREN2, + ACTIONS(2271), 1, + anon_sym_LBRACK, + ACTIONS(2911), 1, + anon_sym_SLASH, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, + anon_sym_CARET, + ACTIONS(2919), 1, + anon_sym_AMP, + ACTIONS(2937), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2939), 1, + anon_sym_QMARK, + STATE(707), 1, + sym_argument_list, + ACTIONS(2273), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2909), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2921), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2923), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2925), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3083), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [41374] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2273), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2752), 1, anon_sym_DOT, - ACTIONS(3020), 1, + ACTIONS(3029), 1, anon_sym_SLASH, - STATE(720), 1, + ACTIONS(3033), 1, + anon_sym_AMP_AMP, + ACTIONS(3035), 1, + anon_sym_PIPE, + ACTIONS(3037), 1, + anon_sym_CARET, + ACTIONS(3039), 1, + anon_sym_AMP, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3018), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2269), 6, + ACTIONS(3025), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2271), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3027), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3047), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2348), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, anon_sym_RBRACK, anon_sym_QMARK, - [41516] = 13, + [41442] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -97904,7 +97870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1669), 1, anon_sym_enum, - ACTIONS(1819), 1, + ACTIONS(1831), 1, sym_identifier, STATE(1123), 1, sym__type_specifier, @@ -97920,7 +97886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -97936,36 +97902,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [41572] = 12, + [41498] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2273), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2752), 1, anon_sym_DOT, - ACTIONS(3020), 1, + ACTIONS(3029), 1, anon_sym_SLASH, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3016), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(3027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2269), 4, + ACTIONS(2346), 6, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2271), 12, + ACTIONS(2348), 12, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -97978,449 +97943,464 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RBRACK, anon_sym_QMARK, - [41626] = 21, + [41550] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(2995), 1, anon_sym_COMMA, - ACTIONS(3074), 1, + ACTIONS(3085), 1, anon_sym_RPAREN, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, + ACTIONS(2921), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2923), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2925), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2927), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2900), 2, + [41622] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2269), 1, + anon_sym_LPAREN2, + ACTIONS(2271), 1, + anon_sym_LBRACK, + ACTIONS(2911), 1, + anon_sym_SLASH, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, + anon_sym_CARET, + ACTIONS(2919), 1, + anon_sym_AMP, + ACTIONS(2937), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2939), 1, + anon_sym_QMARK, + ACTIONS(2995), 1, + anon_sym_COMMA, + ACTIONS(3087), 1, + anon_sym_RPAREN, + STATE(707), 1, + sym_argument_list, + ACTIONS(2273), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2909), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41698] = 21, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [41694] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(2995), 1, anon_sym_COMMA, - ACTIONS(3076), 1, + ACTIONS(3089), 1, anon_sym_SEMI, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41770] = 21, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [41766] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2255), 1, + ACTIONS(2273), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(2737), 1, + ACTIONS(2752), 1, anon_sym_DOT, - ACTIONS(3020), 1, + ACTIONS(3029), 1, anon_sym_SLASH, - ACTIONS(3022), 1, - anon_sym_CARET, - ACTIONS(3024), 1, - anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3058), 1, + ACTIONS(3031), 1, anon_sym_PIPE_PIPE, - ACTIONS(3060), 1, + ACTIONS(3033), 1, anon_sym_AMP_AMP, - ACTIONS(3062), 1, + ACTIONS(3035), 1, + anon_sym_PIPE, + ACTIONS(3037), 1, + anon_sym_CARET, + ACTIONS(3039), 1, + anon_sym_AMP, + ACTIONS(3049), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2417), 2, + ACTIONS(2432), 2, anon_sym_DOT_DOT_DOT, anon_sym_RBRACK, - ACTIONS(3016), 2, + ACTIONS(3025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(3027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(3041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(3043), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(3045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(3047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41842] = 21, + [41838] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(2995), 1, anon_sym_COMMA, - ACTIONS(3078), 1, - anon_sym_RPAREN, - STATE(720), 1, + ACTIONS(3091), 1, + anon_sym_COLON, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41914] = 21, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [41910] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(2980), 1, - anon_sym_COMMA, - ACTIONS(3080), 1, - anon_sym_RPAREN, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41986] = 21, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3093), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [41980] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(2995), 1, anon_sym_COMMA, - ACTIONS(3082), 1, + ACTIONS(3095), 1, anon_sym_SEMI, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [42058] = 20, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [42052] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3084), 2, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3097), 2, anon_sym_COMMA, anon_sym_RPAREN, - [42128] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1669), 1, - anon_sym_enum, - ACTIONS(3010), 1, - sym_identifier, - ACTIONS(3014), 1, - sym_primitive_type, - STATE(1176), 1, - sym__type_specifier, - STATE(1223), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1279), 1, - sym__type_definition_type, - STATE(1105), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3012), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [42184] = 13, + [42122] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1819), 1, - sym_identifier, - ACTIONS(3008), 1, - anon_sym_enum, - STATE(1123), 1, - sym__type_specifier, - STATE(1139), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1815), 1, - sym_type_descriptor, - STATE(1107), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1667), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [42240] = 13, + ACTIONS(2269), 1, + anon_sym_LPAREN2, + ACTIONS(2271), 1, + anon_sym_LBRACK, + ACTIONS(2911), 1, + anon_sym_SLASH, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, + anon_sym_CARET, + ACTIONS(2919), 1, + anon_sym_AMP, + ACTIONS(2937), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2939), 1, + anon_sym_QMARK, + ACTIONS(2995), 1, + anon_sym_COMMA, + ACTIONS(3099), 1, + anon_sym_RPAREN, + STATE(707), 1, + sym_argument_list, + ACTIONS(2273), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2909), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2921), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2923), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2925), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [42194] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -98429,25 +98409,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1669), 1, anon_sym_enum, - ACTIONS(3010), 1, + ACTIONS(3051), 1, sym_identifier, - ACTIONS(3014), 1, + ACTIONS(3055), 1, sym_primitive_type, STATE(1176), 1, sym__type_specifier, STATE(1223), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1283), 1, + STATE(1279), 1, sym__type_definition_type, STATE(1105), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3012), 4, + ACTIONS(3053), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -98463,158 +98443,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42296] = 20, + [42250] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - STATE(720), 1, + ACTIONS(2995), 1, + anon_sym_COMMA, + ACTIONS(3101), 1, + anon_sym_SEMI, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2888), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, + ACTIONS(2921), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2923), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2925), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2927), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2900), 2, + [42322] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2271), 1, + anon_sym_LBRACK, + ACTIONS(2273), 1, + anon_sym_DASH_GT, + ACTIONS(2346), 1, + anon_sym_PIPE, + ACTIONS(2750), 1, + anon_sym_LPAREN2, + ACTIONS(2752), 1, + anon_sym_DOT, + ACTIONS(3029), 1, + anon_sym_SLASH, + ACTIONS(3039), 1, + anon_sym_AMP, + STATE(707), 1, + sym_argument_list, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3025), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3027), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(3043), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(3045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [42366] = 21, + ACTIONS(3047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2348), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [42386] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(2995), 1, anon_sym_COMMA, - ACTIONS(3086), 1, + ACTIONS(3103), 1, anon_sym_COLON, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [42438] = 20, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [42458] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3088), 2, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3105), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [42508] = 13, + anon_sym_RPAREN, + [42528] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -98623,25 +98651,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1669), 1, anon_sym_enum, - ACTIONS(3010), 1, + ACTIONS(3051), 1, sym_identifier, - ACTIONS(3014), 1, + ACTIONS(3055), 1, sym_primitive_type, STATE(1176), 1, sym__type_specifier, STATE(1223), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1278), 1, + STATE(1283), 1, sym__type_definition_type, STATE(1105), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3012), 4, + ACTIONS(3053), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -98657,582 +98685,574 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42564] = 21, + [42584] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(2995), 1, anon_sym_COMMA, - ACTIONS(3090), 1, + ACTIONS(3107), 1, anon_sym_COLON, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2894), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2902), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2904), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [42636] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2255), 1, - anon_sym_DASH_GT, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(2737), 1, - anon_sym_DOT, - ACTIONS(3020), 1, - anon_sym_SLASH, - ACTIONS(3022), 1, - anon_sym_CARET, - ACTIONS(3024), 1, - anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3058), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3060), 1, - anon_sym_AMP_AMP, - ACTIONS(3062), 1, - anon_sym_QMARK, - ACTIONS(3092), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3094), 1, - anon_sym_RBRACK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3016), 2, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(2927), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42710] = 21, + [42656] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1669), 1, + anon_sym_enum, + ACTIONS(3051), 1, + sym_identifier, + ACTIONS(3055), 1, + sym_primitive_type, + STATE(1176), 1, + sym__type_specifier, + STATE(1223), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1278), 1, + sym__type_definition_type, + STATE(1105), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3053), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [42712] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(2980), 1, - anon_sym_COMMA, - ACTIONS(3096), 1, - anon_sym_SEMI, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3109), 2, + anon_sym_COMMA, + anon_sym_RBRACE, [42782] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(2995), 1, anon_sym_COMMA, - ACTIONS(3098), 1, - anon_sym_SEMI, - STATE(720), 1, + ACTIONS(3111), 1, + anon_sym_RPAREN, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, [42854] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(2995), 1, anon_sym_COMMA, - ACTIONS(3100), 1, + ACTIONS(3113), 1, anon_sym_SEMI, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [42926] = 21, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [42926] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2273), 1, + anon_sym_DASH_GT, + ACTIONS(2750), 1, + anon_sym_LPAREN2, + ACTIONS(2752), 1, + anon_sym_DOT, + ACTIONS(3029), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(3031), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3033), 1, + anon_sym_AMP_AMP, + ACTIONS(3035), 1, + anon_sym_PIPE, + ACTIONS(3037), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(3039), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(3049), 1, anon_sym_QMARK, - ACTIONS(2980), 1, - anon_sym_COMMA, - ACTIONS(3102), 1, - anon_sym_RPAREN, - STATE(720), 1, + ACTIONS(3115), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3117), 1, + anon_sym_RBRACK, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(3025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(3027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(3041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(3043), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(3045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [42998] = 20, + ACTIONS(3047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [43000] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - STATE(720), 1, + ACTIONS(2995), 1, + anon_sym_COMMA, + ACTIONS(3119), 1, + anon_sym_SEMI, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3104), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [43068] = 21, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [43072] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(2980), 1, + ACTIONS(2995), 1, anon_sym_COMMA, - ACTIONS(3106), 1, + ACTIONS(3121), 1, anon_sym_SEMI, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [43140] = 20, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [43144] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2050), 1, + anon_sym_RBRACK, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2750), 1, + anon_sym_LPAREN2, + ACTIONS(3029), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(3031), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3033), 1, + anon_sym_AMP_AMP, + ACTIONS(3035), 1, + anon_sym_PIPE, + ACTIONS(3037), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(3039), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(3049), 1, anon_sym_QMARK, - ACTIONS(3108), 1, - anon_sym_COMMA, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(3027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(3041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(3043), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(3045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [43209] = 20, + ACTIONS(3047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [43213] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(3110), 1, - anon_sym_COLON, - STATE(720), 1, + ACTIONS(3123), 1, + anon_sym_RPAREN, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [43278] = 20, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [43282] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2008), 1, + ACTIONS(2036), 1, anon_sym_RBRACK, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(3020), 1, + ACTIONS(3029), 1, anon_sym_SLASH, - ACTIONS(3022), 1, - anon_sym_CARET, - ACTIONS(3024), 1, - anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3058), 1, + ACTIONS(3031), 1, anon_sym_PIPE_PIPE, - ACTIONS(3060), 1, + ACTIONS(3033), 1, anon_sym_AMP_AMP, - ACTIONS(3062), 1, + ACTIONS(3035), 1, + anon_sym_PIPE, + ACTIONS(3037), 1, + anon_sym_CARET, + ACTIONS(3039), 1, + anon_sym_AMP, + ACTIONS(3049), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3016), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(3027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(3041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(3043), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(3045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(3047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43347] = 12, + [43351] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2850), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2852), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2854), 1, anon_sym_STAR, - ACTIONS(2837), 1, + ACTIONS(2858), 1, sym_primitive_type, - STATE(1360), 1, + STATE(1361), 1, sym__type_declarator, STATE(1913), 1, sym_ms_based_modifier, - STATE(1113), 2, + STATE(1114), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2835), 4, + ACTIONS(2856), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -99253,468 +99273,468 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [43400] = 20, + [43404] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2044), 1, + ACTIONS(2038), 1, anon_sym_RBRACK, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(3020), 1, + ACTIONS(3029), 1, anon_sym_SLASH, - ACTIONS(3022), 1, - anon_sym_CARET, - ACTIONS(3024), 1, - anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3058), 1, + ACTIONS(3031), 1, anon_sym_PIPE_PIPE, - ACTIONS(3060), 1, + ACTIONS(3033), 1, anon_sym_AMP_AMP, - ACTIONS(3062), 1, + ACTIONS(3035), 1, + anon_sym_PIPE, + ACTIONS(3037), 1, + anon_sym_CARET, + ACTIONS(3039), 1, + anon_sym_AMP, + ACTIONS(3049), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3016), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(3027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(3041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(3043), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(3045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(3047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43469] = 20, + [43473] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2010), 1, + ACTIONS(2052), 1, anon_sym_RBRACK, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(3020), 1, + ACTIONS(3029), 1, anon_sym_SLASH, - ACTIONS(3022), 1, - anon_sym_CARET, - ACTIONS(3024), 1, - anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3058), 1, + ACTIONS(3031), 1, anon_sym_PIPE_PIPE, - ACTIONS(3060), 1, + ACTIONS(3033), 1, anon_sym_AMP_AMP, - ACTIONS(3062), 1, + ACTIONS(3035), 1, + anon_sym_PIPE, + ACTIONS(3037), 1, + anon_sym_CARET, + ACTIONS(3039), 1, + anon_sym_AMP, + ACTIONS(3049), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3016), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(3027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(3041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(3043), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(3045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(3047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43538] = 20, + [43542] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2038), 1, + ACTIONS(2066), 1, anon_sym_RBRACK, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(3020), 1, + ACTIONS(3029), 1, anon_sym_SLASH, - ACTIONS(3022), 1, - anon_sym_CARET, - ACTIONS(3024), 1, - anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3058), 1, + ACTIONS(3031), 1, anon_sym_PIPE_PIPE, - ACTIONS(3060), 1, + ACTIONS(3033), 1, anon_sym_AMP_AMP, - ACTIONS(3062), 1, + ACTIONS(3035), 1, + anon_sym_PIPE, + ACTIONS(3037), 1, + anon_sym_CARET, + ACTIONS(3039), 1, + anon_sym_AMP, + ACTIONS(3049), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3016), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(3027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(3041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(3043), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(3045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(3047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43607] = 20, + [43611] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2040), 1, - anon_sym_RBRACK, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2735), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(3020), 1, + ACTIONS(2271), 1, + anon_sym_LBRACK, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(3022), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(3024), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3058), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(3060), 1, - anon_sym_AMP_AMP, - ACTIONS(3062), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - STATE(720), 1, + ACTIONS(3125), 1, + anon_sym_COLON, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3016), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(2927), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43676] = 20, + [43680] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2042), 1, + ACTIONS(2046), 1, anon_sym_RBRACK, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(3020), 1, + ACTIONS(3029), 1, anon_sym_SLASH, - ACTIONS(3022), 1, - anon_sym_CARET, - ACTIONS(3024), 1, - anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3058), 1, + ACTIONS(3031), 1, anon_sym_PIPE_PIPE, - ACTIONS(3060), 1, + ACTIONS(3033), 1, anon_sym_AMP_AMP, - ACTIONS(3062), 1, + ACTIONS(3035), 1, + anon_sym_PIPE, + ACTIONS(3037), 1, + anon_sym_CARET, + ACTIONS(3039), 1, + anon_sym_AMP, + ACTIONS(3049), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3016), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(3027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(3041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(3043), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(3045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(3047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43745] = 20, + [43749] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2048), 1, - anon_sym_RBRACK, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2735), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(3020), 1, + ACTIONS(2271), 1, + anon_sym_LBRACK, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(3022), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(3024), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3058), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(3060), 1, - anon_sym_AMP_AMP, - ACTIONS(3062), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - STATE(720), 1, + ACTIONS(3127), 1, + anon_sym_COLON, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3016), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(2927), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43814] = 20, + [43818] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2044), 1, + anon_sym_RBRACK, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2750), 1, + anon_sym_LPAREN2, + ACTIONS(3029), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(3031), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3033), 1, + anon_sym_AMP_AMP, + ACTIONS(3035), 1, + anon_sym_PIPE, + ACTIONS(3037), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(3039), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(3049), 1, anon_sym_QMARK, - ACTIONS(3112), 1, - anon_sym_COLON, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(3027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(3041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(3043), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(3045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [43883] = 20, + ACTIONS(3047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [43887] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2750), 1, + anon_sym_LPAREN2, + ACTIONS(3029), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(3031), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3033), 1, + anon_sym_AMP_AMP, + ACTIONS(3035), 1, + anon_sym_PIPE, + ACTIONS(3037), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(3039), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(3049), 1, anon_sym_QMARK, - ACTIONS(3114), 1, - anon_sym_COLON, - STATE(720), 1, + ACTIONS(3129), 1, + anon_sym_RBRACK, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(3027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(3041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(3043), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(3045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [43952] = 20, + ACTIONS(3047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [43956] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(3116), 1, + ACTIONS(3131), 1, anon_sym_COLON, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [44021] = 12, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [44025] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2850), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2852), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2854), 1, anon_sym_STAR, - ACTIONS(2837), 1, + ACTIONS(2858), 1, sym_primitive_type, - STATE(1361), 1, + STATE(1363), 1, sym__type_declarator, STATE(1913), 1, sym_ms_based_modifier, - STATE(1113), 2, + STATE(1114), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2835), 4, + ACTIONS(2856), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -99735,105 +99755,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [44074] = 20, + [44078] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2054), 1, + ACTIONS(2048), 1, anon_sym_RBRACK, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(3020), 1, + ACTIONS(3029), 1, anon_sym_SLASH, - ACTIONS(3022), 1, - anon_sym_CARET, - ACTIONS(3024), 1, - anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3058), 1, + ACTIONS(3031), 1, anon_sym_PIPE_PIPE, - ACTIONS(3060), 1, + ACTIONS(3033), 1, anon_sym_AMP_AMP, - ACTIONS(3062), 1, + ACTIONS(3035), 1, + anon_sym_PIPE, + ACTIONS(3037), 1, + anon_sym_CARET, + ACTIONS(3039), 1, + anon_sym_AMP, + ACTIONS(3049), 1, anon_sym_QMARK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3016), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(3027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(3041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(3043), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(3045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(3047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44143] = 20, + [44147] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, + ACTIONS(2008), 1, + anon_sym_RBRACK, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(3020), 1, + ACTIONS(3029), 1, anon_sym_SLASH, - ACTIONS(3022), 1, - anon_sym_CARET, - ACTIONS(3024), 1, - anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3058), 1, + ACTIONS(3031), 1, anon_sym_PIPE_PIPE, - ACTIONS(3060), 1, + ACTIONS(3033), 1, anon_sym_AMP_AMP, - ACTIONS(3062), 1, + ACTIONS(3035), 1, + anon_sym_PIPE, + ACTIONS(3037), 1, + anon_sym_CARET, + ACTIONS(3039), 1, + anon_sym_AMP, + ACTIONS(3049), 1, anon_sym_QMARK, - ACTIONS(3118), 1, - anon_sym_RBRACK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3016), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(3027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(3041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(3043), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(3045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(3047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44212] = 12, + [44216] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -99844,13 +99864,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1669), 1, anon_sym_enum, - ACTIONS(1819), 1, + ACTIONS(1831), 1, + sym_identifier, + STATE(1122), 1, + sym__type_specifier, + STATE(1139), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1114), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1667), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(825), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [44269] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1831), 1, sym_identifier, + ACTIONS(3021), 1, + anon_sym_enum, STATE(1122), 1, sym__type_specifier, STATE(1139), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1113), 2, + STATE(1114), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1667), 4, @@ -99858,7 +99919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -99874,105 +99935,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [44265] = 20, + [44322] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(3120), 1, - anon_sym_RPAREN, - STATE(720), 1, + ACTIONS(3133), 1, + anon_sym_COLON, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2894), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2902), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2904), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [44334] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2012), 1, - anon_sym_RBRACK, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(3020), 1, - anon_sym_SLASH, - ACTIONS(3022), 1, - anon_sym_CARET, - ACTIONS(3024), 1, - anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3058), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3060), 1, - anon_sym_AMP_AMP, - ACTIONS(3062), 1, - anon_sym_QMARK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3016), 2, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(2927), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44403] = 12, + [44391] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -99981,23 +99993,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1669), 1, anon_sym_enum, - ACTIONS(3010), 1, + ACTIONS(3051), 1, sym_identifier, - ACTIONS(3014), 1, + ACTIONS(3055), 1, sym_primitive_type, STATE(1198), 1, sym__type_specifier, STATE(1223), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1113), 2, + STATE(1114), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3012), 4, + ACTIONS(3053), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(821), 5, + STATE(825), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -100013,107 +100025,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [44456] = 20, + [44444] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(3122), 1, + ACTIONS(3135), 1, anon_sym_RPAREN, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [44525] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1819), 1, - sym_identifier, - ACTIONS(3008), 1, - anon_sym_enum, - STATE(1122), 1, - sym__type_specifier, - STATE(1139), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1113), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1667), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(821), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [44578] = 3, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [44513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3126), 6, + ACTIONS(3139), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3124), 21, + ACTIONS(3137), 21, anon_sym___extension__, anon_sym___based, sym_ms_restrict_modifier, @@ -100135,17 +100106,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [44613] = 3, + [44548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3130), 6, + ACTIONS(3143), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3128), 21, + ACTIONS(3141), 21, anon_sym___extension__, anon_sym___based, sym_ms_restrict_modifier, @@ -100167,27 +100138,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [44648] = 12, + [44583] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2850), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2852), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2854), 1, anon_sym_STAR, - ACTIONS(2837), 1, + ACTIONS(2858), 1, sym_primitive_type, - STATE(1355), 1, + STATE(1368), 1, sym__type_declarator, STATE(1913), 1, sym_ms_based_modifier, - STATE(1113), 2, + STATE(1114), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2835), 4, + ACTIONS(2856), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -100208,118 +100179,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [44701] = 20, + [44636] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2911), 1, anon_sym_SLASH, - ACTIONS(2906), 1, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, anon_sym_CARET, - ACTIONS(2908), 1, + ACTIONS(2919), 1, anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, + ACTIONS(2937), 1, anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_QMARK, - ACTIONS(3132), 1, + ACTIONS(3145), 1, anon_sym_COLON, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2892), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2894), 2, + ACTIONS(2909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2898), 2, + ACTIONS(2921), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2923), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2925), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2927), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2900), 2, + [44705] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2269), 1, + anon_sym_LPAREN2, + ACTIONS(2271), 1, + anon_sym_LBRACK, + ACTIONS(2911), 1, + anon_sym_SLASH, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, + anon_sym_CARET, + ACTIONS(2919), 1, + anon_sym_AMP, + ACTIONS(2937), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2939), 1, + anon_sym_QMARK, + ACTIONS(3147), 1, + anon_sym_COMMA, + STATE(707), 1, + sym_argument_list, + ACTIONS(2273), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2909), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2921), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2902), 2, + ACTIONS(2923), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2904), 2, + ACTIONS(2925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [44770] = 20, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [44774] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - ACTIONS(2735), 1, + ACTIONS(2750), 1, anon_sym_LPAREN2, - ACTIONS(3020), 1, + ACTIONS(3029), 1, anon_sym_SLASH, - ACTIONS(3022), 1, - anon_sym_CARET, - ACTIONS(3024), 1, - anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3058), 1, + ACTIONS(3031), 1, anon_sym_PIPE_PIPE, - ACTIONS(3060), 1, + ACTIONS(3033), 1, anon_sym_AMP_AMP, - ACTIONS(3062), 1, + ACTIONS(3035), 1, + anon_sym_PIPE, + ACTIONS(3037), 1, + anon_sym_CARET, + ACTIONS(3039), 1, + anon_sym_AMP, + ACTIONS(3049), 1, anon_sym_QMARK, - ACTIONS(3134), 1, + ACTIONS(3149), 1, anon_sym_RBRACK, - STATE(720), 1, + STATE(707), 1, sym_argument_list, - ACTIONS(2253), 2, + ACTIONS(2273), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2279), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, + ACTIONS(3025), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3027), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3041), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [44843] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2020), 1, + anon_sym_RBRACK, + ACTIONS(2271), 1, + anon_sym_LBRACK, + ACTIONS(2750), 1, + anon_sym_LPAREN2, + ACTIONS(3029), 1, + anon_sym_SLASH, + ACTIONS(3031), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3033), 1, + anon_sym_AMP_AMP, + ACTIONS(3035), 1, + anon_sym_PIPE, + ACTIONS(3037), 1, + anon_sym_CARET, + ACTIONS(3039), 1, + anon_sym_AMP, + ACTIONS(3049), 1, + anon_sym_QMARK, + STATE(707), 1, + sym_argument_list, + ACTIONS(2273), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3016), 2, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3018), 2, + ACTIONS(3027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3026), 2, + ACTIONS(3041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3028), 2, + ACTIONS(3043), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3030), 2, + ACTIONS(3045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3032), 2, + ACTIONS(3047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44839] = 5, + [44912] = 5, ACTIONS(3), 1, sym_comment, - STATE(1113), 2, + STATE(1114), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2340), 6, + ACTIONS(3153), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3136), 9, + ACTIONS(3155), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -100329,7 +100398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2338), 10, + ACTIONS(3151), 10, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -100340,61 +100409,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44878] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2050), 1, - anon_sym_RBRACK, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(3020), 1, - anon_sym_SLASH, - ACTIONS(3022), 1, - anon_sym_CARET, - ACTIONS(3024), 1, - anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3058), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3060), 1, - anon_sym_AMP_AMP, - ACTIONS(3062), 1, - anon_sym_QMARK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3016), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3018), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3028), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3030), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [44947] = 4, + [44951] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3139), 1, + ACTIONS(3158), 1, anon_sym_SEMI, - ACTIONS(2189), 7, + ACTIONS(2233), 7, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -100402,7 +100422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2191), 18, + ACTIONS(2235), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -100421,26 +100441,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [44983] = 8, + [44987] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2725), 1, + ACTIONS(2744), 1, anon_sym_LBRACE, - ACTIONS(3141), 1, + ACTIONS(3160), 1, anon_sym_COLON, - STATE(808), 1, + STATE(827), 1, sym_attribute_specifier, STATE(1119), 1, sym_enumerator_list, - ACTIONS(2720), 5, + ACTIONS(2739), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2718), 16, + ACTIONS(2737), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -100457,72 +100477,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [45027] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2896), 1, - anon_sym_SLASH, - ACTIONS(2906), 1, - anon_sym_CARET, - ACTIONS(2908), 1, - anon_sym_AMP, - ACTIONS(2912), 1, - anon_sym_PIPE, - ACTIONS(2914), 1, - anon_sym_AMP_AMP, - ACTIONS(2926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2928), 1, - anon_sym_QMARK, - STATE(720), 1, - sym_argument_list, - ACTIONS(2253), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2255), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2892), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2894), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2898), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2900), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2902), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2904), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [45093] = 7, + [45031] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2725), 1, + ACTIONS(2744), 1, anon_sym_LBRACE, - STATE(839), 1, + STATE(838), 1, sym_attribute_specifier, STATE(1121), 1, sym_enumerator_list, - ACTIONS(2775), 6, + ACTIONS(2792), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2773), 16, + ACTIONS(2790), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -100539,21 +100512,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [45135] = 5, + [45073] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2269), 1, + anon_sym_LPAREN2, + ACTIONS(2271), 1, + anon_sym_LBRACK, + ACTIONS(2911), 1, + anon_sym_SLASH, + ACTIONS(2913), 1, + anon_sym_AMP_AMP, + ACTIONS(2915), 1, + anon_sym_PIPE, + ACTIONS(2917), 1, + anon_sym_CARET, + ACTIONS(2919), 1, + anon_sym_AMP, + ACTIONS(2937), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2939), 1, + anon_sym_QMARK, + STATE(707), 1, + sym_argument_list, + ACTIONS(2273), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2279), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2907), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2909), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2921), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2923), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2925), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2927), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [45139] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(844), 1, + STATE(840), 1, sym_attribute_specifier, - ACTIONS(2810), 6, + ACTIONS(2823), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2808), 16, + ACTIONS(2821), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -100570,21 +100590,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [45171] = 5, + [45175] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(824), 1, + STATE(808), 1, sym_attribute_specifier, - ACTIONS(2817), 6, + ACTIONS(2832), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2815), 16, + ACTIONS(2830), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -100601,21 +100621,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [45207] = 5, + [45211] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(822), 1, + STATE(824), 1, sym_attribute_specifier, - ACTIONS(2824), 6, + ACTIONS(2839), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2822), 16, + ACTIONS(2837), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -100632,34 +100652,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [45243] = 11, + [45247] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(1867), 1, + ACTIONS(1879), 1, anon_sym_LPAREN2, - ACTIONS(1869), 1, + ACTIONS(1881), 1, anon_sym_STAR, - ACTIONS(2753), 1, + ACTIONS(2764), 1, anon_sym_LBRACK, STATE(1469), 1, sym__abstract_declarator, - STATE(1486), 1, + STATE(1488), 1, sym_parameter_list, STATE(1126), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3143), 3, + ACTIONS(3162), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1496), 4, + STATE(1487), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2938), 8, + ACTIONS(2953), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -100668,34 +100688,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45290] = 11, + [45294] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(1867), 1, + ACTIONS(1879), 1, anon_sym_LPAREN2, - ACTIONS(1869), 1, + ACTIONS(1881), 1, anon_sym_STAR, - ACTIONS(2753), 1, + ACTIONS(2764), 1, anon_sym_LBRACK, - STATE(1447), 1, + STATE(1446), 1, sym__abstract_declarator, - STATE(1486), 1, + STATE(1488), 1, sym_parameter_list, STATE(1127), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3145), 3, + ACTIONS(3164), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1496), 4, + STATE(1487), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2938), 8, + ACTIONS(2953), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -100704,34 +100724,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45337] = 11, + [45341] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(1867), 1, + ACTIONS(1879), 1, anon_sym_LPAREN2, - ACTIONS(1869), 1, + ACTIONS(1881), 1, anon_sym_STAR, - ACTIONS(2753), 1, + ACTIONS(2764), 1, anon_sym_LBRACK, - STATE(1446), 1, + STATE(1459), 1, sym__abstract_declarator, - STATE(1486), 1, + STATE(1488), 1, sym_parameter_list, - STATE(1113), 2, + STATE(1114), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2936), 3, + ACTIONS(2951), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1496), 4, + STATE(1487), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2938), 8, + ACTIONS(2953), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -100740,34 +100760,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45384] = 11, + [45388] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(1867), 1, + ACTIONS(1879), 1, anon_sym_LPAREN2, - ACTIONS(1869), 1, + ACTIONS(1881), 1, anon_sym_STAR, - ACTIONS(2753), 1, + ACTIONS(2764), 1, anon_sym_LBRACK, STATE(1475), 1, sym__abstract_declarator, - STATE(1486), 1, + STATE(1488), 1, sym_parameter_list, - STATE(1113), 2, + STATE(1114), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2780), 3, + ACTIONS(2758), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1496), 4, + STATE(1487), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2938), 8, + ACTIONS(2953), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -100776,34 +100796,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45431] = 11, + [45435] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(1867), 1, + ACTIONS(1879), 1, anon_sym_LPAREN2, - ACTIONS(1869), 1, + ACTIONS(1881), 1, anon_sym_STAR, - ACTIONS(2753), 1, + ACTIONS(2764), 1, anon_sym_LBRACK, STATE(1473), 1, sym__abstract_declarator, - STATE(1486), 1, + STATE(1488), 1, sym_parameter_list, - STATE(1113), 2, + STATE(1114), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3147), 3, + ACTIONS(3166), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1496), 4, + STATE(1487), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2938), 8, + ACTIONS(2953), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -100812,34 +100832,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45478] = 11, + [45482] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(1867), 1, + ACTIONS(1879), 1, anon_sym_LPAREN2, - ACTIONS(1869), 1, + ACTIONS(1881), 1, anon_sym_STAR, - ACTIONS(2753), 1, + ACTIONS(2764), 1, anon_sym_LBRACK, - STATE(1449), 1, + STATE(1448), 1, sym__abstract_declarator, - STATE(1486), 1, + STATE(1488), 1, sym_parameter_list, - STATE(1113), 2, + STATE(1114), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3149), 3, + ACTIONS(3168), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1496), 4, + STATE(1487), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2938), 8, + ACTIONS(2953), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -100848,18 +100868,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45525] = 12, + [45529] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2850), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2852), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2854), 1, anon_sym_STAR, - ACTIONS(2837), 1, + ACTIONS(2858), 1, sym_primitive_type, STATE(1288), 1, sym_ms_call_modifier, @@ -100867,7 +100887,7 @@ static const uint16_t ts_small_parse_table[] = { sym__type_declarator, STATE(1913), 1, sym_ms_based_modifier, - ACTIONS(2835), 4, + ACTIONS(2856), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -100885,18 +100905,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [45574] = 15, + [45578] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3170), 1, sym_identifier, - STATE(690), 1, + STATE(694), 1, sym__old_style_function_declarator, STATE(1309), 1, sym_ms_call_modifier, @@ -100904,7 +100924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_declarator, STATE(1362), 1, sym__declarator, - STATE(1466), 1, + STATE(1470), 1, sym__declaration_declarator, STATE(1501), 1, sym__function_declaration_declarator, @@ -100912,7 +100932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_init_declarator, STATE(1803), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1391), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -100924,25 +100944,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [45628] = 10, + [45632] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2952), 1, + ACTIONS(2969), 1, sym_identifier, - ACTIONS(2954), 1, + ACTIONS(2971), 1, anon_sym_LPAREN2, - ACTIONS(2956), 1, + ACTIONS(2973), 1, anon_sym_STAR, - STATE(1334), 1, + STATE(1336), 1, sym__field_declarator, - STATE(1817), 1, + STATE(1929), 1, sym_ms_based_modifier, - STATE(1113), 2, + STATE(1114), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1399), 5, + STATE(1398), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -100958,25 +100978,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45672] = 10, + [45676] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2952), 1, + ACTIONS(2969), 1, sym_identifier, - ACTIONS(2954), 1, + ACTIONS(2971), 1, anon_sym_LPAREN2, - ACTIONS(2956), 1, + ACTIONS(2973), 1, anon_sym_STAR, - STATE(1344), 1, + STATE(1329), 1, sym__field_declarator, - STATE(1817), 1, + STATE(1929), 1, sym_ms_based_modifier, - STATE(1113), 2, + STATE(1114), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1399), 5, + STATE(1398), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -100992,26 +101012,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45716] = 15, + [45720] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3170), 1, sym_identifier, - STATE(699), 1, + STATE(703), 1, sym__old_style_function_declarator, STATE(1311), 1, sym_ms_call_modifier, STATE(1354), 1, sym_function_declarator, - STATE(1357), 1, + STATE(1358), 1, sym__declarator, - STATE(1471), 1, + STATE(1468), 1, sym__declaration_declarator, STATE(1501), 1, sym__function_declaration_declarator, @@ -101019,7 +101039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_init_declarator, STATE(1803), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1391), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -101031,27 +101051,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [45770] = 6, + [45774] = 6, ACTIONS(3), 1, sym_comment, - STATE(785), 1, + STATE(781), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2455), 2, + ACTIONS(2454), 2, sym_primitive_type, sym_identifier, - ACTIONS(2459), 4, + ACTIONS(2458), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2627), 6, + ACTIONS(2642), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2624), 9, + ACTIONS(2639), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -101061,24 +101081,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45806] = 15, + [45810] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3170), 1, sym_identifier, - STATE(693), 1, + STATE(688), 1, sym__old_style_function_declarator, STATE(1319), 1, sym_ms_call_modifier, STATE(1354), 1, sym_function_declarator, - STATE(1358), 1, + STATE(1359), 1, sym__declarator, STATE(1450), 1, sym__declaration_declarator, @@ -101088,7 +101108,7 @@ static const uint16_t ts_small_parse_table[] = { sym_init_declarator, STATE(1803), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1391), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -101100,26 +101120,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [45860] = 15, + [45864] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3170), 1, sym_identifier, - STATE(713), 1, + STATE(720), 1, sym__old_style_function_declarator, STATE(1315), 1, sym_ms_call_modifier, STATE(1354), 1, sym_function_declarator, - STATE(1369), 1, + STATE(1370), 1, sym__declarator, - STATE(1444), 1, + STATE(1463), 1, sym__declaration_declarator, STATE(1501), 1, sym__function_declaration_declarator, @@ -101127,7 +101147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_init_declarator, STATE(1803), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1391), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -101139,22 +101159,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [45914] = 10, + [45918] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2756), 1, sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, STATE(1312), 1, sym__declarator, STATE(1803), 1, sym_ms_based_modifier, - STATE(1113), 2, + STATE(1114), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, STATE(1354), 5, @@ -101173,22 +101193,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45958] = 10, + [45962] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2756), 1, sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, STATE(1307), 1, sym__declarator, STATE(1803), 1, sym_ms_based_modifier, - STATE(1113), 2, + STATE(1114), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, STATE(1354), 5, @@ -101207,25 +101227,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46002] = 10, + [46006] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2952), 1, + ACTIONS(2969), 1, sym_identifier, - ACTIONS(2954), 1, + ACTIONS(2971), 1, anon_sym_LPAREN2, - ACTIONS(2956), 1, + ACTIONS(2973), 1, anon_sym_STAR, STATE(1350), 1, sym__field_declarator, - STATE(1817), 1, + STATE(1929), 1, sym_ms_based_modifier, - STATE(1113), 2, + STATE(1114), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1399), 5, + STATE(1398), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -101241,28 +101261,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46046] = 7, + [46050] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2662), 1, + ACTIONS(2681), 1, sym_primitive_type, - ACTIONS(3153), 1, + ACTIONS(3172), 1, sym_identifier, STATE(1133), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3155), 4, + ACTIONS(3174), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2656), 6, + ACTIONS(2675), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2658), 9, + ACTIONS(2677), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -101272,20 +101292,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46084] = 5, + [46088] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3159), 1, + ACTIONS(3178), 1, anon_sym_LPAREN2, - STATE(1012), 1, + STATE(1010), 1, sym_preproc_argument_list, - ACTIONS(3161), 5, + ACTIONS(3180), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3157), 15, + ACTIONS(3176), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -101301,22 +101321,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [46118] = 10, + [46122] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2756), 1, sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, STATE(1321), 1, sym__declarator, STATE(1803), 1, sym_ms_based_modifier, - STATE(1113), 2, + STATE(1114), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, STATE(1354), 5, @@ -101335,16 +101355,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46162] = 14, + [46166] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3170), 1, sym_identifier, STATE(1305), 1, sym_ms_call_modifier, @@ -101360,7 +101380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_init_declarator, STATE(1803), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1391), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -101372,16 +101392,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [46213] = 14, + [46217] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3170), 1, sym_identifier, STATE(1311), 1, sym_ms_call_modifier, @@ -101389,7 +101409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_declarator, STATE(1379), 1, sym__declarator, - STATE(1471), 1, + STATE(1468), 1, sym__declaration_declarator, STATE(1501), 1, sym__function_declaration_declarator, @@ -101397,7 +101417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_init_declarator, STATE(1803), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1391), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -101409,16 +101429,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [46264] = 14, + [46268] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3170), 1, sym_identifier, STATE(1308), 1, sym_ms_call_modifier, @@ -101434,7 +101454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_init_declarator, STATE(1803), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1391), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -101446,16 +101466,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [46315] = 14, + [46319] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3170), 1, sym_identifier, STATE(1313), 1, sym_ms_call_modifier, @@ -101463,7 +101483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_declarator, STATE(1439), 1, sym__declarator, - STATE(1466), 1, + STATE(1470), 1, sym__declaration_declarator, STATE(1501), 1, sym__function_declaration_declarator, @@ -101471,7 +101491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_init_declarator, STATE(1803), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1391), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -101483,26 +101503,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [46366] = 10, + [46370] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3182), 1, sym_identifier, - ACTIONS(3165), 1, + ACTIONS(3184), 1, anon_sym_RPAREN, - ACTIONS(3167), 1, + ACTIONS(3186), 1, anon_sym_LPAREN2, - ACTIONS(3169), 1, + ACTIONS(3188), 1, anon_sym_defined, - ACTIONS(3175), 1, + ACTIONS(3194), 1, sym_number_literal, - ACTIONS(3171), 2, + ACTIONS(3190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -101516,16 +101536,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [46409] = 14, + [46413] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3170), 1, sym_identifier, STATE(1320), 1, sym_ms_call_modifier, @@ -101533,7 +101553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_declarator, STATE(1439), 1, sym__declarator, - STATE(1472), 1, + STATE(1444), 1, sym__declaration_declarator, STATE(1501), 1, sym__function_declaration_declarator, @@ -101541,7 +101561,7 @@ static const uint16_t ts_small_parse_table[] = { sym_init_declarator, STATE(1803), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1391), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -101553,55 +101573,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [46460] = 16, + [46464] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3198), 1, anon_sym_COMMA, - ACTIONS(3181), 1, + ACTIONS(3200), 1, anon_sym_RPAREN, - ACTIONS(3187), 1, + ACTIONS(3206), 1, anon_sym_SLASH, - ACTIONS(3189), 1, + ACTIONS(3208), 1, anon_sym_PIPE_PIPE, - ACTIONS(3191), 1, + ACTIONS(3210), 1, anon_sym_AMP_AMP, - ACTIONS(3193), 1, + ACTIONS(3212), 1, anon_sym_PIPE, - ACTIONS(3195), 1, + ACTIONS(3214), 1, anon_sym_CARET, - ACTIONS(3197), 1, + ACTIONS(3216), 1, anon_sym_AMP, STATE(1684), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(3183), 2, + ACTIONS(3202), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3185), 2, + ACTIONS(3204), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3199), 2, + ACTIONS(3218), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3201), 2, + ACTIONS(3220), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3203), 2, + ACTIONS(3222), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3205), 2, + ACTIONS(3224), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46515] = 14, + [46519] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3170), 1, sym_identifier, STATE(1306), 1, sym_ms_call_modifier, @@ -101609,7 +101629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_declarator, STATE(1439), 1, sym__declarator, - STATE(1499), 1, + STATE(1491), 1, sym__declaration_declarator, STATE(1501), 1, sym__function_declaration_declarator, @@ -101617,7 +101637,7 @@ static const uint16_t ts_small_parse_table[] = { sym_init_declarator, STATE(1803), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1391), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -101629,55 +101649,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [46566] = 16, + [46570] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3198), 1, anon_sym_COMMA, - ACTIONS(3187), 1, + ACTIONS(3206), 1, anon_sym_SLASH, - ACTIONS(3189), 1, + ACTIONS(3208), 1, anon_sym_PIPE_PIPE, - ACTIONS(3191), 1, + ACTIONS(3210), 1, anon_sym_AMP_AMP, - ACTIONS(3193), 1, + ACTIONS(3212), 1, anon_sym_PIPE, - ACTIONS(3195), 1, + ACTIONS(3214), 1, anon_sym_CARET, - ACTIONS(3197), 1, + ACTIONS(3216), 1, anon_sym_AMP, - ACTIONS(3207), 1, + ACTIONS(3226), 1, anon_sym_RPAREN, STATE(1673), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(3183), 2, + ACTIONS(3202), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3185), 2, + ACTIONS(3204), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3199), 2, + ACTIONS(3218), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3201), 2, + ACTIONS(3220), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3203), 2, + ACTIONS(3222), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3205), 2, + ACTIONS(3224), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46621] = 5, - ACTIONS(3157), 1, + [46625] = 5, + ACTIONS(3176), 1, anon_sym_LF, - ACTIONS(3209), 1, + ACTIONS(3228), 1, anon_sym_LPAREN2, - ACTIONS(3211), 1, + ACTIONS(3230), 1, sym_comment, STATE(1251), 1, sym_preproc_argument_list, - ACTIONS(3161), 18, + ACTIONS(3180), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101696,26 +101716,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [46654] = 10, + [46658] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3182), 1, sym_identifier, - ACTIONS(3167), 1, + ACTIONS(3186), 1, anon_sym_LPAREN2, - ACTIONS(3169), 1, + ACTIONS(3188), 1, anon_sym_defined, - ACTIONS(3213), 1, + ACTIONS(3232), 1, anon_sym_RPAREN, - ACTIONS(3215), 1, + ACTIONS(3234), 1, sym_number_literal, - ACTIONS(3171), 2, + ACTIONS(3190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -101729,16 +101749,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [46697] = 14, + [46701] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3170), 1, sym_identifier, STATE(1314), 1, sym_ms_call_modifier, @@ -101746,7 +101766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_declarator, STATE(1439), 1, sym__declarator, - STATE(1471), 1, + STATE(1468), 1, sym__declaration_declarator, STATE(1501), 1, sym__function_declaration_declarator, @@ -101754,7 +101774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_init_declarator, STATE(1803), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1391), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -101766,24 +101786,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [46748] = 14, + [46752] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3170), 1, sym_identifier, STATE(1315), 1, sym_ms_call_modifier, STATE(1354), 1, sym_function_declarator, - STATE(1375), 1, + STATE(1381), 1, sym__declarator, - STATE(1444), 1, + STATE(1463), 1, sym__declaration_declarator, STATE(1501), 1, sym__function_declaration_declarator, @@ -101791,7 +101811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_init_declarator, STATE(1803), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1391), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -101803,16 +101823,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [46799] = 14, + [46803] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3170), 1, sym_identifier, STATE(1319), 1, sym_ms_call_modifier, @@ -101828,7 +101848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_init_declarator, STATE(1803), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1391), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -101840,16 +101860,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [46850] = 14, + [46854] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3170), 1, sym_identifier, STATE(1309), 1, sym_ms_call_modifier, @@ -101857,7 +101877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_declarator, STATE(1373), 1, sym__declarator, - STATE(1466), 1, + STATE(1470), 1, sym__declaration_declarator, STATE(1501), 1, sym__function_declaration_declarator, @@ -101865,7 +101885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_init_declarator, STATE(1803), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1391), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -101877,55 +101897,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [46901] = 16, + [46905] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3198), 1, anon_sym_COMMA, - ACTIONS(3187), 1, + ACTIONS(3206), 1, anon_sym_SLASH, - ACTIONS(3189), 1, + ACTIONS(3208), 1, anon_sym_PIPE_PIPE, - ACTIONS(3191), 1, + ACTIONS(3210), 1, anon_sym_AMP_AMP, - ACTIONS(3193), 1, + ACTIONS(3212), 1, anon_sym_PIPE, - ACTIONS(3195), 1, + ACTIONS(3214), 1, anon_sym_CARET, - ACTIONS(3197), 1, + ACTIONS(3216), 1, anon_sym_AMP, - ACTIONS(3217), 1, + ACTIONS(3236), 1, anon_sym_RPAREN, STATE(1595), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(3183), 2, + ACTIONS(3202), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3185), 2, + ACTIONS(3204), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3199), 2, + ACTIONS(3218), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3201), 2, + ACTIONS(3220), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3203), 2, + ACTIONS(3222), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3205), 2, + ACTIONS(3224), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46956] = 14, + [46960] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3170), 1, sym_identifier, STATE(1304), 1, sym_ms_call_modifier, @@ -101933,7 +101953,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_declarator, STATE(1439), 1, sym__declarator, - STATE(1444), 1, + STATE(1463), 1, sym__declaration_declarator, STATE(1501), 1, sym__function_declaration_declarator, @@ -101941,7 +101961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_init_declarator, STATE(1803), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1391), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -101953,26 +101973,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [47007] = 10, + [47011] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3182), 1, sym_identifier, - ACTIONS(3167), 1, + ACTIONS(3186), 1, anon_sym_LPAREN2, - ACTIONS(3169), 1, + ACTIONS(3188), 1, anon_sym_defined, - ACTIONS(3219), 1, + ACTIONS(3238), 1, anon_sym_RPAREN, - ACTIONS(3221), 1, + ACTIONS(3240), 1, sym_number_literal, - ACTIONS(3171), 2, + ACTIONS(3190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -101986,60 +102006,60 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47050] = 14, + [47054] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3187), 1, + ACTIONS(3206), 1, anon_sym_SLASH, - ACTIONS(3189), 1, + ACTIONS(3208), 1, anon_sym_PIPE_PIPE, - ACTIONS(3191), 1, + ACTIONS(3210), 1, anon_sym_AMP_AMP, - ACTIONS(3193), 1, + ACTIONS(3212), 1, anon_sym_PIPE, - ACTIONS(3195), 1, + ACTIONS(3214), 1, anon_sym_CARET, - ACTIONS(3197), 1, + ACTIONS(3216), 1, anon_sym_AMP, - ACTIONS(3183), 2, + ACTIONS(3202), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3185), 2, + ACTIONS(3204), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3199), 2, + ACTIONS(3218), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3201), 2, + ACTIONS(3220), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3203), 2, + ACTIONS(3222), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3205), 2, + ACTIONS(3224), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3223), 2, + ACTIONS(3242), 2, anon_sym_COMMA, anon_sym_RPAREN, - [47100] = 9, + [47104] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3244), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3246), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3248), 1, anon_sym_defined, - ACTIONS(3235), 1, + ACTIONS(3254), 1, sym_number_literal, - ACTIONS(3231), 2, + ACTIONS(3250), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3252), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3256), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -102053,23 +102073,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47140] = 6, + [47144] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3187), 1, + ACTIONS(3206), 1, anon_sym_SLASH, - ACTIONS(3183), 2, + ACTIONS(3202), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3185), 2, + ACTIONS(3204), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3241), 4, + ACTIONS(3260), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3239), 11, + ACTIONS(3258), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -102081,26 +102101,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [47174] = 7, + [47178] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3187), 1, + ACTIONS(3206), 1, anon_sym_SLASH, - ACTIONS(3183), 2, + ACTIONS(3202), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3185), 2, + ACTIONS(3204), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3205), 2, + ACTIONS(3224), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3241), 4, + ACTIONS(3260), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3239), 9, + ACTIONS(3258), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -102110,30 +102130,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [47210] = 9, + [47214] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3187), 1, + ACTIONS(3206), 1, anon_sym_SLASH, - ACTIONS(3183), 2, + ACTIONS(3202), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3185), 2, + ACTIONS(3204), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3201), 2, + ACTIONS(3220), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3203), 2, + ACTIONS(3222), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3205), 2, + ACTIONS(3224), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3241), 2, + ACTIONS(3260), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(3239), 7, + ACTIONS(3258), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -102141,89 +102161,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [47250] = 10, + [47254] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3187), 1, + ACTIONS(3206), 1, anon_sym_SLASH, - ACTIONS(3183), 2, + ACTIONS(3202), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3185), 2, + ACTIONS(3204), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3199), 2, + ACTIONS(3218), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3201), 2, + ACTIONS(3220), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3203), 2, + ACTIONS(3222), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3205), 2, + ACTIONS(3224), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3241), 2, + ACTIONS(3260), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(3239), 5, + ACTIONS(3258), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - [47292] = 11, + [47296] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3187), 1, + ACTIONS(3206), 1, anon_sym_SLASH, - ACTIONS(3197), 1, + ACTIONS(3216), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3260), 1, anon_sym_PIPE, - ACTIONS(3183), 2, + ACTIONS(3202), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3185), 2, + ACTIONS(3204), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3199), 2, + ACTIONS(3218), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3201), 2, + ACTIONS(3220), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3203), 2, + ACTIONS(3222), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3205), 2, + ACTIONS(3224), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3239), 5, + ACTIONS(3258), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - [47336] = 9, + [47340] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3244), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3246), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3248), 1, anon_sym_defined, - ACTIONS(3243), 1, + ACTIONS(3262), 1, sym_number_literal, - ACTIONS(3231), 2, + ACTIONS(3250), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3252), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3256), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -102237,127 +102257,127 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47376] = 12, + [47380] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3187), 1, + ACTIONS(3206), 1, anon_sym_SLASH, - ACTIONS(3195), 1, + ACTIONS(3214), 1, anon_sym_CARET, - ACTIONS(3197), 1, + ACTIONS(3216), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3260), 1, anon_sym_PIPE, - ACTIONS(3183), 2, + ACTIONS(3202), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3185), 2, + ACTIONS(3204), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3199), 2, + ACTIONS(3218), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3201), 2, + ACTIONS(3220), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3203), 2, + ACTIONS(3222), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3205), 2, + ACTIONS(3224), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3239), 4, + ACTIONS(3258), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [47422] = 12, + [47426] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3187), 1, + ACTIONS(3206), 1, anon_sym_SLASH, - ACTIONS(3193), 1, + ACTIONS(3212), 1, anon_sym_PIPE, - ACTIONS(3195), 1, + ACTIONS(3214), 1, anon_sym_CARET, - ACTIONS(3197), 1, + ACTIONS(3216), 1, anon_sym_AMP, - ACTIONS(3183), 2, + ACTIONS(3202), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3185), 2, + ACTIONS(3204), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3199), 2, + ACTIONS(3218), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3201), 2, + ACTIONS(3220), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3203), 2, + ACTIONS(3222), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3205), 2, + ACTIONS(3224), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3239), 4, + ACTIONS(3258), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [47468] = 13, + [47472] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3187), 1, + ACTIONS(3206), 1, anon_sym_SLASH, - ACTIONS(3191), 1, + ACTIONS(3210), 1, anon_sym_AMP_AMP, - ACTIONS(3193), 1, + ACTIONS(3212), 1, anon_sym_PIPE, - ACTIONS(3195), 1, + ACTIONS(3214), 1, anon_sym_CARET, - ACTIONS(3197), 1, + ACTIONS(3216), 1, anon_sym_AMP, - ACTIONS(3183), 2, + ACTIONS(3202), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3185), 2, + ACTIONS(3204), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3199), 2, + ACTIONS(3218), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3201), 2, + ACTIONS(3220), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3203), 2, + ACTIONS(3222), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3205), 2, + ACTIONS(3224), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3239), 3, + ACTIONS(3258), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, - [47516] = 9, + [47520] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3244), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3246), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3248), 1, anon_sym_defined, - ACTIONS(3245), 1, + ACTIONS(3264), 1, sym_number_literal, - ACTIONS(3231), 2, + ACTIONS(3250), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3252), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3256), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -102371,24 +102391,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47556] = 9, + [47560] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3244), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3246), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3248), 1, anon_sym_defined, - ACTIONS(3247), 1, + ACTIONS(3266), 1, sym_number_literal, - ACTIONS(3231), 2, + ACTIONS(3250), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3252), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3256), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -102402,24 +102422,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47596] = 9, + [47600] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3244), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3246), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3248), 1, anon_sym_defined, - ACTIONS(3249), 1, + ACTIONS(3268), 1, sym_number_literal, - ACTIONS(3231), 2, + ACTIONS(3250), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3252), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3256), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -102433,16 +102453,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47636] = 3, + [47640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 5, + ACTIONS(3260), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3239), 15, + ACTIONS(3258), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -102458,20 +102478,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [47664] = 5, + [47668] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3187), 1, + ACTIONS(3206), 1, anon_sym_SLASH, - ACTIONS(3185), 2, + ACTIONS(3204), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3241), 4, + ACTIONS(3260), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3239), 13, + ACTIONS(3258), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -102485,16 +102505,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [47696] = 5, + [47700] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3253), 2, + ACTIONS(3272), 2, anon_sym_LPAREN2, anon_sym_STAR, STATE(1196), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3251), 7, + ACTIONS(3270), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -102512,24 +102532,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47728] = 9, + [47732] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3244), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3246), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3248), 1, anon_sym_defined, - ACTIONS(3255), 1, + ACTIONS(3274), 1, sym_number_literal, - ACTIONS(3231), 2, + ACTIONS(3250), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3252), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3256), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -102543,24 +102563,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47768] = 9, + [47772] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3244), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3246), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3248), 1, anon_sym_defined, - ACTIONS(3257), 1, + ACTIONS(3276), 1, sym_number_literal, - ACTIONS(3231), 2, + ACTIONS(3250), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3252), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3256), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -102574,24 +102594,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47808] = 9, + [47812] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3182), 1, sym_identifier, - ACTIONS(3167), 1, + ACTIONS(3186), 1, anon_sym_LPAREN2, - ACTIONS(3169), 1, + ACTIONS(3188), 1, anon_sym_defined, - ACTIONS(3259), 1, + ACTIONS(3278), 1, sym_number_literal, - ACTIONS(3171), 2, + ACTIONS(3190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -102605,16 +102625,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47848] = 3, + [47852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3263), 5, + ACTIONS(3282), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3261), 15, + ACTIONS(3280), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -102630,24 +102650,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [47876] = 9, + [47880] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3244), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3246), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3248), 1, anon_sym_defined, - ACTIONS(3265), 1, + ACTIONS(3284), 1, sym_number_literal, - ACTIONS(3231), 2, + ACTIONS(3250), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3252), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3256), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -102661,24 +102681,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47916] = 9, + [47920] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3244), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3246), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3248), 1, anon_sym_defined, - ACTIONS(3267), 1, + ACTIONS(3286), 1, sym_number_literal, - ACTIONS(3231), 2, + ACTIONS(3250), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3252), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3256), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -102692,24 +102712,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47956] = 9, + [47960] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3244), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3246), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3248), 1, anon_sym_defined, - ACTIONS(3269), 1, + ACTIONS(3288), 1, sym_number_literal, - ACTIONS(3231), 2, + ACTIONS(3250), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3252), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3256), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -102723,7 +102743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47996] = 13, + [48000] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1749), 1, @@ -102732,22 +102752,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2756), 1, sym_identifier, - ACTIONS(2753), 1, + ACTIONS(2764), 1, anon_sym_LBRACK, STATE(1394), 1, sym__declarator, - STATE(1486), 1, + STATE(1488), 1, sym_parameter_list, - STATE(1491), 1, + STATE(1490), 1, sym__abstract_declarator, STATE(1803), 1, sym_ms_based_modifier, - ACTIONS(3271), 2, + ACTIONS(3290), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1496), 4, + STATE(1487), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, @@ -102758,24 +102778,24 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [48044] = 9, + [48048] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3244), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3246), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3248), 1, anon_sym_defined, - ACTIONS(3273), 1, + ACTIONS(3292), 1, sym_number_literal, - ACTIONS(3231), 2, + ACTIONS(3250), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3252), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3256), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -102789,24 +102809,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48084] = 9, + [48088] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3244), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3246), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3248), 1, anon_sym_defined, - ACTIONS(3275), 1, + ACTIONS(3294), 1, sym_number_literal, - ACTIONS(3231), 2, + ACTIONS(3250), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3252), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3256), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -102820,24 +102840,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48124] = 9, + [48128] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3244), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3246), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3248), 1, anon_sym_defined, - ACTIONS(3277), 1, + ACTIONS(3296), 1, sym_number_literal, - ACTIONS(3231), 2, + ACTIONS(3250), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3252), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3256), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -102851,24 +102871,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48164] = 9, + [48168] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3244), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3246), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3248), 1, anon_sym_defined, - ACTIONS(3279), 1, + ACTIONS(3298), 1, sym_number_literal, - ACTIONS(3231), 2, + ACTIONS(3250), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3252), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3256), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -102882,24 +102902,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48204] = 9, + [48208] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3244), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3246), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3248), 1, anon_sym_defined, - ACTIONS(3281), 1, + ACTIONS(3300), 1, sym_number_literal, - ACTIONS(3231), 2, + ACTIONS(3250), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3252), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3256), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -102913,24 +102933,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48244] = 9, + [48248] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3182), 1, sym_identifier, - ACTIONS(3167), 1, + ACTIONS(3186), 1, anon_sym_LPAREN2, - ACTIONS(3169), 1, + ACTIONS(3188), 1, anon_sym_defined, - ACTIONS(3283), 1, + ACTIONS(3302), 1, sym_number_literal, - ACTIONS(3171), 2, + ACTIONS(3190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -102944,24 +102964,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48284] = 9, + [48288] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3182), 1, sym_identifier, - ACTIONS(3167), 1, + ACTIONS(3186), 1, anon_sym_LPAREN2, - ACTIONS(3169), 1, + ACTIONS(3188), 1, anon_sym_defined, - ACTIONS(3285), 1, + ACTIONS(3304), 1, sym_number_literal, - ACTIONS(3171), 2, + ACTIONS(3190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -102975,16 +102995,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48324] = 3, + [48328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3289), 5, + ACTIONS(3308), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3287), 15, + ACTIONS(3306), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -103000,24 +103020,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [48352] = 9, + [48356] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3244), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3246), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3248), 1, anon_sym_defined, - ACTIONS(3291), 1, + ACTIONS(3310), 1, sym_number_literal, - ACTIONS(3231), 2, + ACTIONS(3250), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3252), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3256), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -103031,24 +103051,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48392] = 9, + [48396] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3182), 1, sym_identifier, - ACTIONS(3167), 1, + ACTIONS(3186), 1, anon_sym_LPAREN2, - ACTIONS(3169), 1, + ACTIONS(3188), 1, anon_sym_defined, - ACTIONS(3293), 1, + ACTIONS(3312), 1, sym_number_literal, - ACTIONS(3171), 2, + ACTIONS(3190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -103062,24 +103082,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48432] = 9, + [48436] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3244), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3246), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3248), 1, anon_sym_defined, - ACTIONS(3295), 1, + ACTIONS(3314), 1, sym_number_literal, - ACTIONS(3231), 2, + ACTIONS(3250), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3252), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3256), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -103093,16 +103113,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48472] = 5, + [48476] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3299), 2, + ACTIONS(3318), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1113), 2, + STATE(1114), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3297), 7, + ACTIONS(3316), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -103120,16 +103140,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48504] = 3, + [48508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2225), 5, + ACTIONS(2189), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2227), 15, + ACTIONS(2191), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -103145,16 +103165,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [48532] = 5, + [48536] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3303), 2, + ACTIONS(3322), 2, anon_sym_LPAREN2, anon_sym_STAR, STATE(1218), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3301), 7, + ACTIONS(3320), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -103172,24 +103192,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48564] = 9, + [48568] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3244), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3246), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3248), 1, anon_sym_defined, - ACTIONS(3305), 1, + ACTIONS(3324), 1, sym_number_literal, - ACTIONS(3231), 2, + ACTIONS(3250), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3252), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3256), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -103203,24 +103223,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48604] = 9, + [48608] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3244), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3246), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3248), 1, anon_sym_defined, - ACTIONS(3307), 1, + ACTIONS(3326), 1, sym_number_literal, - ACTIONS(3231), 2, + ACTIONS(3250), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3252), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3256), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -103234,24 +103254,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48644] = 9, + [48648] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3244), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3246), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3248), 1, anon_sym_defined, - ACTIONS(3309), 1, + ACTIONS(3328), 1, sym_number_literal, - ACTIONS(3231), 2, + ACTIONS(3250), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3252), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3256), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -103265,24 +103285,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48684] = 9, + [48688] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3244), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3246), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3248), 1, anon_sym_defined, - ACTIONS(3311), 1, + ACTIONS(3330), 1, sym_number_literal, - ACTIONS(3231), 2, + ACTIONS(3250), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3252), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3256), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -103296,24 +103316,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48724] = 9, + [48728] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3182), 1, sym_identifier, - ACTIONS(3167), 1, + ACTIONS(3186), 1, anon_sym_LPAREN2, - ACTIONS(3169), 1, + ACTIONS(3188), 1, anon_sym_defined, - ACTIONS(3313), 1, + ACTIONS(3332), 1, sym_number_literal, - ACTIONS(3171), 2, + ACTIONS(3190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -103327,24 +103347,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48764] = 9, + [48768] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3182), 1, sym_identifier, - ACTIONS(3167), 1, + ACTIONS(3186), 1, anon_sym_LPAREN2, - ACTIONS(3169), 1, + ACTIONS(3188), 1, anon_sym_defined, - ACTIONS(3315), 1, + ACTIONS(3334), 1, sym_number_literal, - ACTIONS(3171), 2, + ACTIONS(3190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -103358,24 +103378,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48804] = 9, + [48808] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3182), 1, sym_identifier, - ACTIONS(3167), 1, + ACTIONS(3186), 1, anon_sym_LPAREN2, - ACTIONS(3169), 1, + ACTIONS(3188), 1, anon_sym_defined, - ACTIONS(3317), 1, + ACTIONS(3336), 1, sym_number_literal, - ACTIONS(3171), 2, + ACTIONS(3190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -103389,24 +103409,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48844] = 9, + [48848] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3244), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3246), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3248), 1, anon_sym_defined, - ACTIONS(3319), 1, + ACTIONS(3338), 1, sym_number_literal, - ACTIONS(3231), 2, + ACTIONS(3250), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3252), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3256), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -103420,16 +103440,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48884] = 3, + [48888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3323), 5, + ACTIONS(3342), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3321), 15, + ACTIONS(3340), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -103445,24 +103465,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [48912] = 9, + [48916] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3182), 1, sym_identifier, - ACTIONS(3167), 1, + ACTIONS(3186), 1, anon_sym_LPAREN2, - ACTIONS(3169), 1, + ACTIONS(3188), 1, anon_sym_defined, - ACTIONS(3325), 1, + ACTIONS(3344), 1, sym_number_literal, - ACTIONS(3171), 2, + ACTIONS(3190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -103476,24 +103496,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48952] = 9, + [48956] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3182), 1, sym_identifier, - ACTIONS(3167), 1, + ACTIONS(3186), 1, anon_sym_LPAREN2, - ACTIONS(3169), 1, + ACTIONS(3188), 1, anon_sym_defined, - ACTIONS(3327), 1, + ACTIONS(3346), 1, sym_number_literal, - ACTIONS(3171), 2, + ACTIONS(3190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -103507,24 +103527,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48992] = 9, + [48996] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3182), 1, sym_identifier, - ACTIONS(3167), 1, + ACTIONS(3186), 1, anon_sym_LPAREN2, - ACTIONS(3169), 1, + ACTIONS(3188), 1, anon_sym_defined, - ACTIONS(3329), 1, + ACTIONS(3348), 1, sym_number_literal, - ACTIONS(3171), 2, + ACTIONS(3190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -103538,16 +103558,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49032] = 3, + [49036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 5, + ACTIONS(3352), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3331), 15, + ACTIONS(3350), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -103563,24 +103583,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [49060] = 9, + [49064] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3182), 1, sym_identifier, - ACTIONS(3167), 1, + ACTIONS(3186), 1, anon_sym_LPAREN2, - ACTIONS(3169), 1, + ACTIONS(3188), 1, anon_sym_defined, - ACTIONS(3335), 1, + ACTIONS(3354), 1, sym_number_literal, - ACTIONS(3171), 2, + ACTIONS(3190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -103594,24 +103614,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49100] = 9, + [49104] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3182), 1, sym_identifier, - ACTIONS(3167), 1, + ACTIONS(3186), 1, anon_sym_LPAREN2, - ACTIONS(3169), 1, + ACTIONS(3188), 1, anon_sym_defined, - ACTIONS(3337), 1, + ACTIONS(3356), 1, sym_number_literal, - ACTIONS(3171), 2, + ACTIONS(3190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -103625,24 +103645,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49140] = 9, + [49144] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3182), 1, sym_identifier, - ACTIONS(3167), 1, + ACTIONS(3186), 1, anon_sym_LPAREN2, - ACTIONS(3169), 1, + ACTIONS(3188), 1, anon_sym_defined, - ACTIONS(3339), 1, + ACTIONS(3358), 1, sym_number_literal, - ACTIONS(3171), 2, + ACTIONS(3190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -103656,24 +103676,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49180] = 9, + [49184] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3244), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3246), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3248), 1, anon_sym_defined, - ACTIONS(3341), 1, + ACTIONS(3360), 1, sym_number_literal, - ACTIONS(3231), 2, + ACTIONS(3250), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3252), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3256), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -103687,24 +103707,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49220] = 9, + [49224] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3244), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3246), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3248), 1, anon_sym_defined, - ACTIONS(3343), 1, + ACTIONS(3362), 1, sym_number_literal, - ACTIONS(3231), 2, + ACTIONS(3250), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3252), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3256), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -103718,24 +103738,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49260] = 9, + [49264] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3182), 1, sym_identifier, - ACTIONS(3167), 1, + ACTIONS(3186), 1, anon_sym_LPAREN2, - ACTIONS(3169), 1, + ACTIONS(3188), 1, anon_sym_defined, - ACTIONS(3345), 1, + ACTIONS(3364), 1, sym_number_literal, - ACTIONS(3171), 2, + ACTIONS(3190), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3173), 2, + ACTIONS(3192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3177), 5, + ACTIONS(3196), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -103749,16 +103769,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49300] = 5, + [49304] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 2, + ACTIONS(3368), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1113), 2, + STATE(1114), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3347), 7, + ACTIONS(3366), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -103776,24 +103796,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [49332] = 9, + [49336] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3244), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3246), 1, anon_sym_LPAREN2, - ACTIONS(3229), 1, + ACTIONS(3248), 1, anon_sym_defined, - ACTIONS(3351), 1, + ACTIONS(3370), 1, sym_number_literal, - ACTIONS(3231), 2, + ACTIONS(3250), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3233), 2, + ACTIONS(3252), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3237), 5, + ACTIONS(3256), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -103807,12 +103827,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49372] = 3, - ACTIONS(3211), 1, + [49376] = 3, + ACTIONS(3230), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(3350), 1, anon_sym_LF, - ACTIONS(3333), 18, + ACTIONS(3352), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -103831,43 +103851,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [49399] = 10, - ACTIONS(3211), 1, + [49403] = 10, + ACTIONS(3230), 1, sym_comment, - ACTIONS(3239), 1, + ACTIONS(3258), 1, anon_sym_LF, - ACTIONS(3357), 1, + ACTIONS(3376), 1, anon_sym_CARET, - ACTIONS(3359), 1, + ACTIONS(3378), 1, anon_sym_AMP, - ACTIONS(3353), 2, + ACTIONS(3372), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3380), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + ACTIONS(3384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3241), 3, + ACTIONS(3260), 3, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - ACTIONS(3355), 3, + ACTIONS(3374), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, + ACTIONS(3382), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [49440] = 3, - ACTIONS(2227), 1, + [49444] = 3, + ACTIONS(2191), 1, anon_sym_LF, - ACTIONS(3211), 1, + ACTIONS(3230), 1, sym_comment, - ACTIONS(2225), 18, + ACTIONS(2189), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -103886,24 +103906,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [49467] = 7, + [49471] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3367), 1, + ACTIONS(3386), 1, sym_identifier, - ACTIONS(3373), 1, + ACTIONS(3392), 1, sym_primitive_type, STATE(1261), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2656), 2, + ACTIONS(2675), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3370), 4, + ACTIONS(3389), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2658), 10, + ACTIONS(2677), 10, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -103914,12 +103934,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [49502] = 3, - ACTIONS(2950), 1, + [49506] = 3, + ACTIONS(2985), 1, anon_sym_LF, - ACTIONS(3211), 1, + ACTIONS(3230), 1, sym_comment, - ACTIONS(2948), 18, + ACTIONS(2983), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -103938,55 +103958,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [49529] = 12, - ACTIONS(3211), 1, + [49533] = 12, + ACTIONS(3230), 1, sym_comment, - ACTIONS(3357), 1, + ACTIONS(3376), 1, anon_sym_CARET, - ACTIONS(3359), 1, + ACTIONS(3378), 1, anon_sym_AMP, - ACTIONS(3376), 1, + ACTIONS(3395), 1, anon_sym_LF, - ACTIONS(3378), 1, + ACTIONS(3397), 1, anon_sym_PIPE_PIPE, - ACTIONS(3380), 1, + ACTIONS(3399), 1, anon_sym_AMP_AMP, - ACTIONS(3382), 1, + ACTIONS(3401), 1, anon_sym_PIPE, - ACTIONS(3353), 2, + ACTIONS(3372), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3380), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + ACTIONS(3384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3374), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, + ACTIONS(3382), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [49574] = 11, + [49578] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2756), 1, sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(709), 1, + STATE(717), 1, sym__old_style_function_declarator, STATE(1327), 1, sym_ms_call_modifier, - STATE(1383), 1, + STATE(1378), 1, sym__declarator, STATE(1803), 1, sym_ms_based_modifier, @@ -104003,16 +104023,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [49617] = 4, - ACTIONS(3211), 1, + [49621] = 4, + ACTIONS(3230), 1, sym_comment, - ACTIONS(3239), 1, + ACTIONS(3258), 1, anon_sym_LF, - ACTIONS(3355), 3, + ACTIONS(3374), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3241), 15, + ACTIONS(3260), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE_PIPE, @@ -104028,22 +104048,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [49646] = 11, + [49650] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2756), 1, sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(695), 1, + STATE(699), 1, sym__old_style_function_declarator, - STATE(1341), 1, + STATE(1342), 1, sym_ms_call_modifier, - STATE(1376), 1, + STATE(1375), 1, sym__declarator, STATE(1803), 1, sym_ms_based_modifier, @@ -104060,22 +104080,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [49689] = 11, + [49693] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2756), 1, sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(707), 1, + STATE(711), 1, sym__old_style_function_declarator, STATE(1353), 1, sym_ms_call_modifier, - STATE(1388), 1, + STATE(1389), 1, sym__declarator, STATE(1803), 1, sym_ms_based_modifier, @@ -104092,181 +104112,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [49732] = 12, - ACTIONS(3211), 1, + [49736] = 12, + ACTIONS(3230), 1, sym_comment, - ACTIONS(3357), 1, + ACTIONS(3376), 1, anon_sym_CARET, - ACTIONS(3359), 1, - anon_sym_AMP, ACTIONS(3378), 1, + anon_sym_AMP, + ACTIONS(3397), 1, anon_sym_PIPE_PIPE, - ACTIONS(3380), 1, + ACTIONS(3399), 1, anon_sym_AMP_AMP, - ACTIONS(3382), 1, + ACTIONS(3401), 1, anon_sym_PIPE, - ACTIONS(3384), 1, + ACTIONS(3403), 1, anon_sym_LF, - ACTIONS(3353), 2, + ACTIONS(3372), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3380), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + ACTIONS(3384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3374), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, + ACTIONS(3382), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [49777] = 12, - ACTIONS(3211), 1, + [49781] = 12, + ACTIONS(3230), 1, sym_comment, - ACTIONS(3357), 1, + ACTIONS(3376), 1, anon_sym_CARET, - ACTIONS(3359), 1, - anon_sym_AMP, ACTIONS(3378), 1, + anon_sym_AMP, + ACTIONS(3397), 1, anon_sym_PIPE_PIPE, - ACTIONS(3380), 1, + ACTIONS(3399), 1, anon_sym_AMP_AMP, - ACTIONS(3382), 1, + ACTIONS(3401), 1, anon_sym_PIPE, - ACTIONS(3386), 1, + ACTIONS(3405), 1, anon_sym_LF, - ACTIONS(3353), 2, + ACTIONS(3372), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3380), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + ACTIONS(3384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3374), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, + ACTIONS(3382), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [49822] = 12, - ACTIONS(3211), 1, + [49826] = 12, + ACTIONS(3230), 1, sym_comment, - ACTIONS(3357), 1, + ACTIONS(3376), 1, anon_sym_CARET, - ACTIONS(3359), 1, - anon_sym_AMP, ACTIONS(3378), 1, + anon_sym_AMP, + ACTIONS(3397), 1, anon_sym_PIPE_PIPE, - ACTIONS(3380), 1, + ACTIONS(3399), 1, anon_sym_AMP_AMP, - ACTIONS(3382), 1, + ACTIONS(3401), 1, anon_sym_PIPE, - ACTIONS(3388), 1, + ACTIONS(3407), 1, anon_sym_LF, - ACTIONS(3353), 2, + ACTIONS(3372), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3380), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + ACTIONS(3384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3374), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, + ACTIONS(3382), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [49867] = 12, - ACTIONS(3211), 1, + [49871] = 12, + ACTIONS(3230), 1, sym_comment, - ACTIONS(3357), 1, + ACTIONS(3376), 1, anon_sym_CARET, - ACTIONS(3359), 1, - anon_sym_AMP, ACTIONS(3378), 1, + anon_sym_AMP, + ACTIONS(3397), 1, anon_sym_PIPE_PIPE, - ACTIONS(3380), 1, + ACTIONS(3399), 1, anon_sym_AMP_AMP, - ACTIONS(3382), 1, + ACTIONS(3401), 1, anon_sym_PIPE, - ACTIONS(3390), 1, + ACTIONS(3409), 1, anon_sym_LF, - ACTIONS(3353), 2, + ACTIONS(3372), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3380), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + ACTIONS(3384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3374), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, + ACTIONS(3382), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [49912] = 12, - ACTIONS(3211), 1, + [49916] = 12, + ACTIONS(3230), 1, sym_comment, - ACTIONS(3357), 1, + ACTIONS(3376), 1, anon_sym_CARET, - ACTIONS(3359), 1, - anon_sym_AMP, ACTIONS(3378), 1, + anon_sym_AMP, + ACTIONS(3397), 1, anon_sym_PIPE_PIPE, - ACTIONS(3380), 1, + ACTIONS(3399), 1, anon_sym_AMP_AMP, - ACTIONS(3382), 1, + ACTIONS(3401), 1, anon_sym_PIPE, - ACTIONS(3392), 1, + ACTIONS(3411), 1, anon_sym_LF, - ACTIONS(3353), 2, + ACTIONS(3372), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3380), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + ACTIONS(3384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3374), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, + ACTIONS(3382), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [49957] = 6, + [49961] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1710), 1, anon_sym_STAR, - ACTIONS(2646), 1, + ACTIONS(2669), 1, anon_sym_LPAREN2, STATE(1249), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3394), 4, + ACTIONS(3413), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -104284,12 +104304,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [49990] = 3, - ACTIONS(3211), 1, + [49994] = 3, + ACTIONS(3230), 1, sym_comment, - ACTIONS(3261), 1, + ACTIONS(3280), 1, anon_sym_LF, - ACTIONS(3263), 18, + ACTIONS(3282), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -104308,54 +104328,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50017] = 14, + [50021] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3187), 1, + ACTIONS(3206), 1, anon_sym_SLASH, - ACTIONS(3189), 1, + ACTIONS(3208), 1, anon_sym_PIPE_PIPE, - ACTIONS(3191), 1, + ACTIONS(3210), 1, anon_sym_AMP_AMP, - ACTIONS(3193), 1, + ACTIONS(3212), 1, anon_sym_PIPE, - ACTIONS(3195), 1, + ACTIONS(3214), 1, anon_sym_CARET, - ACTIONS(3197), 1, + ACTIONS(3216), 1, anon_sym_AMP, - ACTIONS(3397), 1, + ACTIONS(3416), 1, anon_sym_RPAREN, - ACTIONS(3183), 2, + ACTIONS(3202), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3185), 2, + ACTIONS(3204), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3199), 2, + ACTIONS(3218), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3201), 2, + ACTIONS(3220), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3203), 2, + ACTIONS(3222), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3205), 2, + ACTIONS(3224), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50066] = 5, - ACTIONS(3211), 1, + [50070] = 5, + ACTIONS(3230), 1, sym_comment, - ACTIONS(3239), 1, + ACTIONS(3258), 1, anon_sym_LF, - ACTIONS(3353), 2, + ACTIONS(3372), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3355), 3, + ACTIONS(3374), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3241), 13, + ACTIONS(3260), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -104369,20 +104389,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50097] = 5, + [50101] = 5, ACTIONS(3), 1, sym_comment, - STATE(785), 1, + STATE(781), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2608), 2, + ACTIONS(2623), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3399), 4, + ACTIONS(3418), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2606), 12, + ACTIONS(2621), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -104395,45 +104415,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [50128] = 12, - ACTIONS(3211), 1, + [50132] = 12, + ACTIONS(3230), 1, sym_comment, - ACTIONS(3357), 1, + ACTIONS(3376), 1, anon_sym_CARET, - ACTIONS(3359), 1, - anon_sym_AMP, ACTIONS(3378), 1, + anon_sym_AMP, + ACTIONS(3397), 1, anon_sym_PIPE_PIPE, - ACTIONS(3380), 1, + ACTIONS(3399), 1, anon_sym_AMP_AMP, - ACTIONS(3382), 1, + ACTIONS(3401), 1, anon_sym_PIPE, - ACTIONS(3402), 1, + ACTIONS(3421), 1, anon_sym_LF, - ACTIONS(3353), 2, + ACTIONS(3372), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3380), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + ACTIONS(3384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3374), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, + ACTIONS(3382), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50173] = 3, - ACTIONS(2978), 1, + [50177] = 3, + ACTIONS(2993), 1, anon_sym_LF, - ACTIONS(3211), 1, + ACTIONS(3230), 1, sym_comment, - ACTIONS(2976), 18, + ACTIONS(2991), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -104452,88 +104472,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50200] = 12, - ACTIONS(3211), 1, + [50204] = 12, + ACTIONS(3230), 1, sym_comment, - ACTIONS(3357), 1, + ACTIONS(3376), 1, anon_sym_CARET, - ACTIONS(3359), 1, - anon_sym_AMP, ACTIONS(3378), 1, + anon_sym_AMP, + ACTIONS(3397), 1, anon_sym_PIPE_PIPE, - ACTIONS(3380), 1, + ACTIONS(3399), 1, anon_sym_AMP_AMP, - ACTIONS(3382), 1, + ACTIONS(3401), 1, anon_sym_PIPE, - ACTIONS(3404), 1, + ACTIONS(3423), 1, anon_sym_LF, - ACTIONS(3353), 2, + ACTIONS(3372), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3380), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + ACTIONS(3384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3374), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, + ACTIONS(3382), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50245] = 12, - ACTIONS(3211), 1, + [50249] = 12, + ACTIONS(3230), 1, sym_comment, - ACTIONS(3357), 1, + ACTIONS(3376), 1, anon_sym_CARET, - ACTIONS(3359), 1, - anon_sym_AMP, ACTIONS(3378), 1, + anon_sym_AMP, + ACTIONS(3397), 1, anon_sym_PIPE_PIPE, - ACTIONS(3380), 1, + ACTIONS(3399), 1, anon_sym_AMP_AMP, - ACTIONS(3382), 1, + ACTIONS(3401), 1, anon_sym_PIPE, - ACTIONS(3406), 1, + ACTIONS(3425), 1, anon_sym_LF, - ACTIONS(3353), 2, + ACTIONS(3372), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3380), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + ACTIONS(3384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3374), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, + ACTIONS(3382), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50290] = 6, - ACTIONS(3211), 1, + [50294] = 6, + ACTIONS(3230), 1, sym_comment, - ACTIONS(3239), 1, + ACTIONS(3258), 1, anon_sym_LF, - ACTIONS(3353), 2, + ACTIONS(3372), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3365), 2, + ACTIONS(3384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3374), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3241), 11, + ACTIONS(3260), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -104545,22 +104565,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50323] = 11, + [50327] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2756), 1, sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(703), 1, + STATE(719), 1, sym__old_style_function_declarator, STATE(1347), 1, sym_ms_call_modifier, - STATE(1378), 1, + STATE(1376), 1, sym__declarator, STATE(1803), 1, sym_ms_based_modifier, @@ -104577,12 +104597,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50366] = 3, - ACTIONS(3211), 1, + [50370] = 3, + ACTIONS(3230), 1, sym_comment, - ACTIONS(3321), 1, + ACTIONS(3340), 1, anon_sym_LF, - ACTIONS(3323), 18, + ACTIONS(3342), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -104601,27 +104621,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50393] = 7, - ACTIONS(3211), 1, + [50397] = 7, + ACTIONS(3230), 1, sym_comment, - ACTIONS(3239), 1, + ACTIONS(3258), 1, anon_sym_LF, - ACTIONS(3353), 2, + ACTIONS(3372), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3365), 2, + ACTIONS(3384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3374), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, + ACTIONS(3382), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(3241), 7, + ACTIONS(3260), 7, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -104629,53 +104649,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [50428] = 12, - ACTIONS(3211), 1, + [50432] = 12, + ACTIONS(3230), 1, sym_comment, - ACTIONS(3239), 1, + ACTIONS(3258), 1, anon_sym_LF, - ACTIONS(3241), 1, + ACTIONS(3260), 1, anon_sym_PIPE_PIPE, - ACTIONS(3357), 1, + ACTIONS(3376), 1, anon_sym_CARET, - ACTIONS(3359), 1, + ACTIONS(3378), 1, anon_sym_AMP, - ACTIONS(3380), 1, + ACTIONS(3399), 1, anon_sym_AMP_AMP, - ACTIONS(3382), 1, + ACTIONS(3401), 1, anon_sym_PIPE, - ACTIONS(3353), 2, + ACTIONS(3372), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3380), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + ACTIONS(3384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3374), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, + ACTIONS(3382), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50473] = 5, + [50477] = 5, ACTIONS(3), 1, sym_comment, - STATE(785), 1, + STATE(781), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2526), 2, + ACTIONS(2537), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3408), 4, + ACTIONS(3427), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2524), 12, + ACTIONS(2535), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -104688,45 +104708,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [50504] = 12, - ACTIONS(3211), 1, + [50508] = 12, + ACTIONS(3230), 1, sym_comment, - ACTIONS(3357), 1, + ACTIONS(3376), 1, anon_sym_CARET, - ACTIONS(3359), 1, - anon_sym_AMP, ACTIONS(3378), 1, + anon_sym_AMP, + ACTIONS(3397), 1, anon_sym_PIPE_PIPE, - ACTIONS(3380), 1, + ACTIONS(3399), 1, anon_sym_AMP_AMP, - ACTIONS(3382), 1, + ACTIONS(3401), 1, anon_sym_PIPE, - ACTIONS(3411), 1, + ACTIONS(3430), 1, anon_sym_LF, - ACTIONS(3353), 2, + ACTIONS(3372), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3380), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + ACTIONS(3384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3374), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, + ACTIONS(3382), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50549] = 3, - ACTIONS(2960), 1, + [50553] = 3, + ACTIONS(2981), 1, anon_sym_LF, - ACTIONS(3211), 1, + ACTIONS(3230), 1, sym_comment, - ACTIONS(2958), 18, + ACTIONS(2979), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -104745,52 +104765,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50576] = 11, - ACTIONS(3211), 1, + [50580] = 11, + ACTIONS(3230), 1, sym_comment, - ACTIONS(3239), 1, + ACTIONS(3258), 1, anon_sym_LF, - ACTIONS(3357), 1, + ACTIONS(3376), 1, anon_sym_CARET, - ACTIONS(3359), 1, + ACTIONS(3378), 1, anon_sym_AMP, - ACTIONS(3382), 1, + ACTIONS(3401), 1, anon_sym_PIPE, - ACTIONS(3241), 2, + ACTIONS(3260), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3353), 2, + ACTIONS(3372), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3380), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + ACTIONS(3384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3374), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, + ACTIONS(3382), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50619] = 5, + [50623] = 5, ACTIONS(3), 1, sym_comment, - STATE(785), 1, + STATE(781), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2532), 2, + ACTIONS(2543), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3413), 4, + ACTIONS(3432), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2530), 12, + ACTIONS(2541), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -104803,151 +104823,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [50650] = 14, + [50654] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3187), 1, + ACTIONS(3206), 1, anon_sym_SLASH, - ACTIONS(3189), 1, + ACTIONS(3208), 1, anon_sym_PIPE_PIPE, - ACTIONS(3191), 1, + ACTIONS(3210), 1, anon_sym_AMP_AMP, - ACTIONS(3193), 1, + ACTIONS(3212), 1, anon_sym_PIPE, - ACTIONS(3195), 1, + ACTIONS(3214), 1, anon_sym_CARET, - ACTIONS(3197), 1, + ACTIONS(3216), 1, anon_sym_AMP, - ACTIONS(3416), 1, + ACTIONS(3435), 1, anon_sym_RPAREN, - ACTIONS(3183), 2, + ACTIONS(3202), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3185), 2, + ACTIONS(3204), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3199), 2, + ACTIONS(3218), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3201), 2, + ACTIONS(3220), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3203), 2, + ACTIONS(3222), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3205), 2, + ACTIONS(3224), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50699] = 12, - ACTIONS(3211), 1, + [50703] = 12, + ACTIONS(3230), 1, sym_comment, - ACTIONS(3357), 1, + ACTIONS(3376), 1, anon_sym_CARET, - ACTIONS(3359), 1, - anon_sym_AMP, ACTIONS(3378), 1, + anon_sym_AMP, + ACTIONS(3397), 1, anon_sym_PIPE_PIPE, - ACTIONS(3380), 1, + ACTIONS(3399), 1, anon_sym_AMP_AMP, - ACTIONS(3382), 1, + ACTIONS(3401), 1, anon_sym_PIPE, - ACTIONS(3418), 1, + ACTIONS(3437), 1, anon_sym_LF, - ACTIONS(3353), 2, + ACTIONS(3372), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3380), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + ACTIONS(3384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3374), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, + ACTIONS(3382), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50744] = 12, - ACTIONS(3211), 1, + [50748] = 12, + ACTIONS(3230), 1, sym_comment, - ACTIONS(3357), 1, + ACTIONS(3376), 1, anon_sym_CARET, - ACTIONS(3359), 1, - anon_sym_AMP, ACTIONS(3378), 1, + anon_sym_AMP, + ACTIONS(3397), 1, anon_sym_PIPE_PIPE, - ACTIONS(3380), 1, + ACTIONS(3399), 1, anon_sym_AMP_AMP, - ACTIONS(3382), 1, + ACTIONS(3401), 1, anon_sym_PIPE, - ACTIONS(3420), 1, + ACTIONS(3439), 1, anon_sym_LF, - ACTIONS(3353), 2, + ACTIONS(3372), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3380), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + ACTIONS(3384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3374), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, + ACTIONS(3382), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50789] = 9, - ACTIONS(3211), 1, + [50793] = 9, + ACTIONS(3230), 1, sym_comment, - ACTIONS(3239), 1, + ACTIONS(3258), 1, anon_sym_LF, - ACTIONS(3359), 1, + ACTIONS(3378), 1, anon_sym_AMP, - ACTIONS(3353), 2, + ACTIONS(3372), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3380), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + ACTIONS(3384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3374), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3241), 4, + ACTIONS(3260), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3363), 4, + ACTIONS(3382), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50828] = 5, + [50832] = 5, ACTIONS(3), 1, sym_comment, - STATE(785), 1, + STATE(781), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2536), 2, + ACTIONS(2571), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3422), 4, + ACTIONS(3441), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2534), 12, + ACTIONS(2569), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -104960,12 +104980,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [50859] = 3, - ACTIONS(3211), 1, + [50863] = 3, + ACTIONS(3230), 1, sym_comment, - ACTIONS(3287), 1, + ACTIONS(3306), 1, anon_sym_LF, - ACTIONS(3289), 18, + ACTIONS(3308), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -104984,20 +105004,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50886] = 5, + [50890] = 5, ACTIONS(3), 1, sym_comment, STATE(1253), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2620), 2, + ACTIONS(2631), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3425), 4, + ACTIONS(3444), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2618), 12, + ACTIONS(2629), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -105010,20 +105030,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [50917] = 5, + [50921] = 5, ACTIONS(3), 1, sym_comment, - STATE(785), 1, + STATE(781), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2627), 2, + ACTIONS(2642), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3428), 4, + ACTIONS(3447), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2624), 12, + ACTIONS(2639), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -105036,53 +105056,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [50948] = 12, - ACTIONS(3211), 1, + [50952] = 12, + ACTIONS(3230), 1, sym_comment, - ACTIONS(3357), 1, + ACTIONS(3376), 1, anon_sym_CARET, - ACTIONS(3359), 1, - anon_sym_AMP, ACTIONS(3378), 1, + anon_sym_AMP, + ACTIONS(3397), 1, anon_sym_PIPE_PIPE, - ACTIONS(3380), 1, + ACTIONS(3399), 1, anon_sym_AMP_AMP, - ACTIONS(3382), 1, + ACTIONS(3401), 1, anon_sym_PIPE, - ACTIONS(3432), 1, + ACTIONS(3451), 1, anon_sym_LF, - ACTIONS(3353), 2, + ACTIONS(3372), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3380), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + ACTIONS(3384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3374), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, + ACTIONS(3382), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50993] = 5, + [50997] = 5, ACTIONS(3), 1, sym_comment, STATE(1258), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2548), 2, + ACTIONS(2561), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3434), 4, + ACTIONS(3453), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2546), 12, + ACTIONS(2559), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -105095,49 +105115,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [51024] = 8, - ACTIONS(3211), 1, + [51028] = 8, + ACTIONS(3230), 1, sym_comment, - ACTIONS(3239), 1, + ACTIONS(3258), 1, anon_sym_LF, - ACTIONS(3353), 2, + ACTIONS(3372), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3380), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + ACTIONS(3384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3374), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, + ACTIONS(3382), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(3241), 5, + ACTIONS(3260), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - [51061] = 5, + [51065] = 5, ACTIONS(3), 1, sym_comment, STATE(1239), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2558), 2, + ACTIONS(2555), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3437), 4, + ACTIONS(3456), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2556), 12, + ACTIONS(2553), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -105150,12 +105170,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [51092] = 3, - ACTIONS(3211), 1, + [51096] = 3, + ACTIONS(3230), 1, sym_comment, - ACTIONS(3239), 1, + ACTIONS(3258), 1, anon_sym_LF, - ACTIONS(3241), 18, + ACTIONS(3260), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -105174,45 +105194,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [51119] = 12, - ACTIONS(3211), 1, + [51123] = 12, + ACTIONS(3230), 1, sym_comment, - ACTIONS(3357), 1, + ACTIONS(3376), 1, anon_sym_CARET, - ACTIONS(3359), 1, - anon_sym_AMP, ACTIONS(3378), 1, + anon_sym_AMP, + ACTIONS(3397), 1, anon_sym_PIPE_PIPE, - ACTIONS(3380), 1, + ACTIONS(3399), 1, anon_sym_AMP_AMP, - ACTIONS(3382), 1, + ACTIONS(3401), 1, anon_sym_PIPE, - ACTIONS(3440), 1, + ACTIONS(3459), 1, anon_sym_LF, - ACTIONS(3353), 2, + ACTIONS(3372), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3361), 2, + ACTIONS(3380), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3365), 2, + ACTIONS(3384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3355), 3, + ACTIONS(3374), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3363), 4, + ACTIONS(3382), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51164] = 3, - ACTIONS(2964), 1, + [51168] = 3, + ACTIONS(2989), 1, anon_sym_LF, - ACTIONS(3211), 1, + ACTIONS(3230), 1, sym_comment, - ACTIONS(2962), 18, + ACTIONS(2987), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -105231,18 +105251,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [51191] = 10, + [51195] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2756), 1, sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(1332), 1, + STATE(1334), 1, sym_ms_call_modifier, STATE(1421), 1, sym__declarator, @@ -105261,20 +105281,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [51231] = 10, + [51235] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2756), 1, sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(1341), 1, + STATE(1342), 1, sym_ms_call_modifier, - STATE(1405), 1, + STATE(1397), 1, sym__declarator, STATE(1803), 1, sym_ms_based_modifier, @@ -105291,16 +105311,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [51271] = 10, + [51275] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2756), 1, sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, STATE(1347), 1, sym_ms_call_modifier, @@ -105321,20 +105341,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [51311] = 10, + [51315] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2756), 1, sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, STATE(1353), 1, sym_ms_call_modifier, - STATE(1411), 1, + STATE(1408), 1, sym__declarator, STATE(1803), 1, sym_ms_based_modifier, @@ -105351,20 +105371,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [51351] = 10, + [51355] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2756), 1, sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, STATE(1327), 1, sym_ms_call_modifier, - STATE(1397), 1, + STATE(1413), 1, sym__declarator, STATE(1803), 1, sym_ms_based_modifier, @@ -105381,24 +105401,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [51391] = 10, + [51395] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2952), 1, + ACTIONS(2969), 1, sym_identifier, - ACTIONS(2954), 1, + ACTIONS(2971), 1, anon_sym_LPAREN2, - ACTIONS(2956), 1, + ACTIONS(2973), 1, anon_sym_STAR, STATE(1333), 1, sym_ms_call_modifier, - STATE(1427), 1, + STATE(1425), 1, sym__field_declarator, - STATE(1817), 1, + STATE(1929), 1, sym_ms_based_modifier, - STATE(1399), 5, + STATE(1398), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -105411,7 +105431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [51431] = 12, + [51435] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1749), 1, @@ -105420,19 +105440,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2756), 1, sym_identifier, - ACTIONS(2753), 1, + ACTIONS(2764), 1, anon_sym_LBRACK, - STATE(1425), 1, + STATE(1432), 1, sym__declarator, - STATE(1486), 1, + STATE(1488), 1, sym_parameter_list, STATE(1534), 1, sym__abstract_declarator, STATE(1803), 1, sym_ms_based_modifier, - STATE(1496), 4, + STATE(1487), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, @@ -105443,26 +105463,26 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [51475] = 11, + [51479] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2850), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2852), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2854), 1, anon_sym_STAR, - ACTIONS(2837), 1, + ACTIONS(2858), 1, sym_primitive_type, - STATE(1359), 1, + STATE(1360), 1, sym__type_declarator, STATE(1542), 1, sym__type_definition_declarators, STATE(1913), 1, sym_ms_based_modifier, - ACTIONS(2835), 4, + ACTIONS(2856), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -105473,26 +105493,26 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51516] = 11, + [51520] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2850), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2852), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2854), 1, anon_sym_STAR, - ACTIONS(2837), 1, + ACTIONS(2858), 1, sym_primitive_type, - STATE(1359), 1, + STATE(1360), 1, sym__type_declarator, STATE(1531), 1, sym__type_definition_declarators, STATE(1913), 1, sym_ms_based_modifier, - ACTIONS(2835), 4, + ACTIONS(2856), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -105503,26 +105523,26 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51557] = 11, + [51561] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2850), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2852), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2854), 1, anon_sym_STAR, - ACTIONS(2837), 1, + ACTIONS(2858), 1, sym_primitive_type, - STATE(1359), 1, + STATE(1360), 1, sym__type_declarator, STATE(1547), 1, sym__type_definition_declarators, STATE(1913), 1, sym_ms_based_modifier, - ACTIONS(2835), 4, + ACTIONS(2856), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -105533,26 +105553,26 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51598] = 11, + [51602] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2850), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2852), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2854), 1, anon_sym_STAR, - ACTIONS(2837), 1, + ACTIONS(2858), 1, sym_primitive_type, - STATE(1359), 1, + STATE(1360), 1, sym__type_declarator, STATE(1550), 1, sym__type_definition_declarators, STATE(1913), 1, sym_ms_based_modifier, - ACTIONS(2835), 4, + ACTIONS(2856), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -105563,26 +105583,26 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51639] = 11, + [51643] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2850), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2852), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2854), 1, anon_sym_STAR, - ACTIONS(2837), 1, + ACTIONS(2858), 1, sym_primitive_type, - STATE(1359), 1, + STATE(1360), 1, sym__type_declarator, STATE(1508), 1, sym__type_definition_declarators, STATE(1913), 1, sym_ms_based_modifier, - ACTIONS(2835), 4, + ACTIONS(2856), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -105593,22 +105613,22 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51680] = 8, + [51684] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2718), 1, + ACTIONS(2737), 1, anon_sym_const, - ACTIONS(2725), 1, + ACTIONS(2744), 1, anon_sym_LBRACE, - ACTIONS(3442), 1, + ACTIONS(3461), 1, anon_sym___attribute__, - ACTIONS(3444), 1, + ACTIONS(3463), 1, anon_sym_COLON, - STATE(808), 1, + STATE(827), 1, sym_attribute_specifier, STATE(1119), 1, sym_enumerator_list, - ACTIONS(2720), 11, + ACTIONS(2739), 11, anon_sym_LPAREN2, anon_sym_STAR, anon_sym___extension__, @@ -105620,26 +105640,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [51715] = 11, + [51719] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2850), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2852), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2854), 1, anon_sym_STAR, - ACTIONS(2837), 1, + ACTIONS(2858), 1, sym_primitive_type, - STATE(1359), 1, + STATE(1360), 1, sym__type_declarator, STATE(1555), 1, sym__type_definition_declarators, STATE(1913), 1, sym_ms_based_modifier, - ACTIONS(2835), 4, + ACTIONS(2856), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -105650,26 +105670,26 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51756] = 11, + [51760] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2850), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2852), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2854), 1, anon_sym_STAR, - ACTIONS(2837), 1, + ACTIONS(2858), 1, sym_primitive_type, - STATE(1359), 1, + STATE(1360), 1, sym__type_declarator, STATE(1510), 1, sym__type_definition_declarators, STATE(1913), 1, sym_ms_based_modifier, - ACTIONS(2835), 4, + ACTIONS(2856), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -105680,26 +105700,26 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51797] = 11, + [51801] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2850), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2852), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2854), 1, anon_sym_STAR, - ACTIONS(2837), 1, + ACTIONS(2858), 1, sym_primitive_type, - STATE(1359), 1, + STATE(1360), 1, sym__type_declarator, STATE(1505), 1, sym__type_definition_declarators, STATE(1913), 1, sym_ms_based_modifier, - ACTIONS(2835), 4, + ACTIONS(2856), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -105710,14 +105730,14 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51838] = 11, + [51842] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3447), 1, + ACTIONS(3466), 1, sym_identifier, - ACTIONS(3453), 1, + ACTIONS(3472), 1, anon_sym_LBRACK, STATE(1291), 1, sym_gnu_asm_expression, @@ -105728,25 +105748,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(3449), 2, + ACTIONS(3468), 2, anon_sym_COMMA, anon_sym_SEMI, STATE(1297), 2, sym_preproc_call_expression, aux_sym_function_declarator_repeat1, - ACTIONS(3451), 4, + ACTIONS(3470), 4, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [51878] = 8, + [51882] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3447), 1, + ACTIONS(3466), 1, sym_identifier, - ACTIONS(3453), 1, + ACTIONS(3472), 1, anon_sym_LBRACK, STATE(1296), 1, sym_gnu_asm_expression, @@ -105757,7 +105777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3451), 7, + ACTIONS(3470), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -105765,24 +105785,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [51912] = 10, + [51916] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2850), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2852), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2854), 1, anon_sym_STAR, - ACTIONS(2837), 1, + ACTIONS(2858), 1, sym_primitive_type, - STATE(1385), 1, + STATE(1384), 1, sym__type_declarator, STATE(1913), 1, sym_ms_based_modifier, - ACTIONS(2835), 4, + ACTIONS(2856), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -105793,24 +105813,24 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51950] = 10, + [51954] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2850), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2852), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2854), 1, anon_sym_STAR, - ACTIONS(2837), 1, + ACTIONS(2858), 1, sym_primitive_type, - STATE(1431), 1, + STATE(1430), 1, sym__type_declarator, STATE(1913), 1, sym_ms_based_modifier, - ACTIONS(2835), 4, + ACTIONS(2856), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -105821,53 +105841,53 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51988] = 12, + [51992] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2952), 1, + ACTIONS(2969), 1, sym_identifier, - ACTIONS(2954), 1, + ACTIONS(2971), 1, anon_sym_LPAREN2, - ACTIONS(2956), 1, + ACTIONS(2973), 1, anon_sym_STAR, - ACTIONS(3455), 1, + ACTIONS(3474), 1, anon_sym_SEMI, STATE(1323), 1, sym__field_declarator, STATE(1613), 1, sym__field_declaration_declarator, - STATE(1817), 1, + STATE(1929), 1, sym_ms_based_modifier, STATE(2001), 1, sym_attribute_specifier, - STATE(1399), 5, + STATE(1398), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [52029] = 11, + [52033] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3457), 1, + ACTIONS(3476), 1, sym_identifier, - ACTIONS(3459), 1, + ACTIONS(3478), 1, aux_sym_preproc_if_token2, - ACTIONS(3461), 1, + ACTIONS(3480), 1, aux_sym_preproc_else_token1, - ACTIONS(3463), 1, + ACTIONS(3482), 1, aux_sym_preproc_elif_token1, STATE(1348), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, STATE(1351), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1420), 1, + STATE(1442), 1, sym_enumerator, - ACTIONS(3465), 2, + ACTIONS(3484), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, STATE(1776), 3, @@ -105878,41 +105898,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [52068] = 10, + [52072] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3447), 1, + ACTIONS(3466), 1, sym_identifier, - ACTIONS(3471), 1, + ACTIONS(3490), 1, anon_sym_LBRACK, STATE(1340), 1, sym_attribute_specifier, STATE(1436), 1, aux_sym_type_definition_repeat1, - ACTIONS(3467), 2, + ACTIONS(3486), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3473), 2, + ACTIONS(3492), 2, anon_sym_asm, anon_sym___asm__, STATE(1293), 2, sym_preproc_call_expression, aux_sym_function_declarator_repeat1, - ACTIONS(3469), 4, + ACTIONS(3488), 4, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [52105] = 6, + [52109] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3475), 1, + ACTIONS(3494), 1, sym_identifier, - ACTIONS(3480), 1, + ACTIONS(3499), 1, anon_sym___attribute__, - ACTIONS(3483), 3, + ACTIONS(3502), 3, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, @@ -105920,7 +105940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3478), 7, + ACTIONS(3497), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -105928,14 +105948,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [52134] = 6, + [52138] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3447), 1, + ACTIONS(3466), 1, sym_identifier, - ACTIONS(3487), 3, + ACTIONS(3506), 3, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, @@ -105943,7 +105963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3485), 7, + ACTIONS(3504), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -105951,24 +105971,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [52163] = 11, + [52167] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3457), 1, + ACTIONS(3476), 1, sym_identifier, - ACTIONS(3461), 1, + ACTIONS(3480), 1, aux_sym_preproc_else_token1, - ACTIONS(3463), 1, + ACTIONS(3482), 1, aux_sym_preproc_elif_token1, - ACTIONS(3489), 1, + ACTIONS(3508), 1, aux_sym_preproc_if_token2, - STATE(1336), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, STATE(1338), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1339), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1420), 1, + STATE(1442), 1, sym_enumerator, - ACTIONS(3465), 2, + ACTIONS(3484), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, STATE(1944), 3, @@ -105979,43 +105999,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [52202] = 12, + [52206] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2952), 1, + ACTIONS(2969), 1, sym_identifier, - ACTIONS(2954), 1, + ACTIONS(2971), 1, anon_sym_LPAREN2, - ACTIONS(2956), 1, + ACTIONS(2973), 1, anon_sym_STAR, - ACTIONS(3491), 1, + ACTIONS(3510), 1, anon_sym_SEMI, STATE(1323), 1, sym__field_declarator, STATE(1678), 1, sym__field_declaration_declarator, - STATE(1817), 1, - sym_ms_based_modifier, STATE(1850), 1, sym_attribute_specifier, - STATE(1399), 5, + STATE(1929), 1, + sym_ms_based_modifier, + STATE(1398), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [52243] = 6, + [52247] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3447), 1, + ACTIONS(3466), 1, sym_identifier, - ACTIONS(3471), 3, + ACTIONS(3490), 3, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, @@ -106023,7 +106043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3469), 7, + ACTIONS(3488), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -106031,14 +106051,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [52272] = 6, + [52276] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3447), 1, + ACTIONS(3466), 1, sym_identifier, - ACTIONS(3471), 3, + ACTIONS(3490), 3, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, @@ -106046,7 +106066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3469), 7, + ACTIONS(3488), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -106054,24 +106074,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [52301] = 11, + [52305] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3457), 1, + ACTIONS(3476), 1, sym_identifier, - ACTIONS(3461), 1, + ACTIONS(3480), 1, aux_sym_preproc_else_token1, - ACTIONS(3463), 1, + ACTIONS(3482), 1, aux_sym_preproc_elif_token1, - ACTIONS(3493), 1, + ACTIONS(3512), 1, aux_sym_preproc_if_token2, - STATE(1339), 1, + STATE(1341), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, STATE(1346), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1420), 1, + STATE(1442), 1, sym_enumerator, - ACTIONS(3465), 2, + ACTIONS(3484), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, STATE(1899), 3, @@ -106082,53 +106102,53 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [52340] = 12, + [52344] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2952), 1, + ACTIONS(2969), 1, sym_identifier, - ACTIONS(2954), 1, + ACTIONS(2971), 1, anon_sym_LPAREN2, - ACTIONS(2956), 1, + ACTIONS(2973), 1, anon_sym_STAR, - ACTIONS(3495), 1, + ACTIONS(3514), 1, anon_sym_SEMI, STATE(1323), 1, sym__field_declarator, STATE(1664), 1, sym__field_declaration_declarator, - STATE(1817), 1, - sym_ms_based_modifier, STATE(1904), 1, sym_attribute_specifier, - STATE(1399), 5, + STATE(1929), 1, + sym_ms_based_modifier, + STATE(1398), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [52381] = 11, + [52385] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3457), 1, + ACTIONS(3476), 1, sym_identifier, - ACTIONS(3461), 1, + ACTIONS(3480), 1, aux_sym_preproc_else_token1, - ACTIONS(3463), 1, + ACTIONS(3482), 1, aux_sym_preproc_elif_token1, - ACTIONS(3497), 1, + ACTIONS(3516), 1, aux_sym_preproc_if_token2, STATE(1325), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1349), 1, + STATE(1331), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1420), 1, + STATE(1442), 1, sym_enumerator, - ACTIONS(3465), 2, + ACTIONS(3484), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, STATE(1907), 3, @@ -106139,17 +106159,17 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [52420] = 5, + [52424] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3501), 1, + ACTIONS(3520), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3504), 1, + ACTIONS(3523), 1, anon_sym_LBRACK, STATE(1301), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3499), 10, + ACTIONS(3518), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -106160,16 +106180,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [52446] = 3, + [52450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 5, + ACTIONS(2819), 5, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(2797), 8, + ACTIONS(2812), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -106178,21 +106198,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [52467] = 7, + [52471] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3529), 1, anon_sym_LBRACK, STATE(1286), 1, sym_parameter_list, STATE(1324), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3506), 7, + ACTIONS(3525), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -106200,99 +106220,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [52496] = 11, + [52500] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3170), 1, sym_identifier, STATE(1354), 1, sym_function_declarator, - STATE(1451), 1, + STATE(1449), 1, sym__declarator, - STATE(1459), 1, + STATE(1461), 1, sym__declaration_declarator, STATE(1501), 1, sym__function_declaration_declarator, STATE(1803), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1391), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [52533] = 11, + [52537] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3170), 1, sym_identifier, STATE(1354), 1, sym_function_declarator, - STATE(1451), 1, + STATE(1449), 1, sym__declarator, - STATE(1461), 1, + STATE(1466), 1, sym__declaration_declarator, STATE(1501), 1, sym__function_declaration_declarator, STATE(1803), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1391), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [52570] = 11, + [52574] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3170), 1, sym_identifier, STATE(1354), 1, sym_function_declarator, - STATE(1451), 1, + STATE(1449), 1, sym__declarator, - STATE(1494), 1, + STATE(1495), 1, sym__declaration_declarator, STATE(1501), 1, sym__function_declaration_declarator, STATE(1803), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1391), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [52607] = 7, + [52611] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3529), 1, anon_sym_LBRACK, STATE(1286), 1, sym_parameter_list, STATE(1324), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3512), 7, + ACTIONS(3531), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -106300,70 +106320,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [52636] = 11, + [52640] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3170), 1, sym_identifier, STATE(1354), 1, sym_function_declarator, - STATE(1451), 1, + STATE(1449), 1, sym__declarator, - STATE(1470), 1, + STATE(1472), 1, sym__declaration_declarator, STATE(1501), 1, sym__function_declaration_declarator, STATE(1803), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1391), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [52673] = 11, + [52677] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3170), 1, sym_identifier, STATE(1354), 1, sym_function_declarator, - STATE(1406), 1, + STATE(1400), 1, sym__declarator, - STATE(1460), 1, + STATE(1458), 1, sym__declaration_declarator, STATE(1501), 1, sym__function_declaration_declarator, STATE(1803), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1391), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [52710] = 9, + [52714] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(3514), 1, + ACTIONS(3533), 1, sym_identifier, - ACTIONS(3516), 1, + ACTIONS(3535), 1, aux_sym_preproc_if_token1, - ACTIONS(3520), 1, + ACTIONS(3539), 1, anon_sym_RBRACE, - ACTIONS(3518), 2, + ACTIONS(3537), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, STATE(1726), 2, @@ -106372,51 +106392,51 @@ static const uint16_t ts_small_parse_table[] = { STATE(1905), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1328), 3, + STATE(1349), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [52743] = 11, + [52747] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3170), 1, sym_identifier, STATE(1354), 1, sym_function_declarator, STATE(1414), 1, sym__declarator, - STATE(1468), 1, + STATE(1479), 1, sym__declaration_declarator, STATE(1501), 1, sym__function_declaration_declarator, STATE(1803), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1391), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [52780] = 7, + [52784] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3529), 1, anon_sym_LBRACK, STATE(1286), 1, sym_parameter_list, STATE(1324), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3522), 7, + ACTIONS(3541), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -106424,116 +106444,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [52809] = 11, + [52813] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3170), 1, sym_identifier, STATE(1354), 1, sym_function_declarator, - STATE(1451), 1, + STATE(1449), 1, sym__declarator, - STATE(1460), 1, + STATE(1458), 1, sym__declaration_declarator, STATE(1501), 1, sym__function_declaration_declarator, STATE(1803), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1391), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [52846] = 11, + [52850] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3170), 1, sym_identifier, STATE(1354), 1, sym_function_declarator, - STATE(1451), 1, + STATE(1449), 1, sym__declarator, - STATE(1468), 1, + STATE(1479), 1, sym__declaration_declarator, STATE(1501), 1, sym__function_declaration_declarator, STATE(1803), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1391), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [52883] = 11, + [52887] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3170), 1, sym_identifier, STATE(1354), 1, sym_function_declarator, - STATE(1417), 1, + STATE(1412), 1, sym__declarator, - STATE(1459), 1, + STATE(1461), 1, sym__declaration_declarator, STATE(1501), 1, sym__function_declaration_declarator, STATE(1803), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1391), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [52920] = 5, + [52924] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3159), 1, + ACTIONS(3178), 1, anon_sym_LPAREN2, - STATE(1012), 1, + STATE(1010), 1, sym_preproc_argument_list, - ACTIONS(3524), 5, + ACTIONS(3543), 5, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(3526), 6, + ACTIONS(3545), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [52945] = 9, + [52949] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(3514), 1, + ACTIONS(3533), 1, sym_identifier, - ACTIONS(3516), 1, + ACTIONS(3535), 1, aux_sym_preproc_if_token1, - ACTIONS(3528), 1, + ACTIONS(3547), 1, anon_sym_RBRACE, - ACTIONS(3518), 2, + ACTIONS(3537), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, STATE(1739), 2, @@ -106546,16 +106566,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [52978] = 3, + [52982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3530), 5, + ACTIONS(3549), 5, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(3532), 8, + ACTIONS(3551), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -106564,46 +106584,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [52999] = 11, + [53003] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3170), 1, sym_identifier, STATE(1354), 1, sym_function_declarator, STATE(1402), 1, sym__declarator, - STATE(1470), 1, + STATE(1472), 1, sym__declaration_declarator, STATE(1501), 1, sym__function_declaration_declarator, STATE(1803), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1391), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [53036] = 11, + [53040] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3151), 1, + ACTIONS(3170), 1, sym_identifier, STATE(1354), 1, sym_function_declarator, - STATE(1451), 1, + STATE(1449), 1, sym__declarator, STATE(1477), 1, sym__declaration_declarator, @@ -106611,26 +106631,26 @@ static const uint16_t ts_small_parse_table[] = { sym__function_declaration_declarator, STATE(1803), 1, sym_ms_based_modifier, - STATE(1374), 4, + STATE(1391), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [53073] = 7, + [53077] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3529), 1, anon_sym_LBRACK, STATE(1286), 1, sym_parameter_list, STATE(1324), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3534), 7, + ACTIONS(3553), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -106638,16 +106658,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [53102] = 3, + [53106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2792), 5, + ACTIONS(2807), 5, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(2785), 8, + ACTIONS(2800), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -106656,42 +106676,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [53123] = 11, + [53127] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3536), 1, + ACTIONS(3555), 1, anon_sym_COMMA, - ACTIONS(3540), 1, + ACTIONS(3559), 1, anon_sym_LBRACK, - ACTIONS(3542), 1, + ACTIONS(3561), 1, anon_sym_COLON, - STATE(1393), 1, + STATE(1395), 1, sym_parameter_list, STATE(1536), 1, aux_sym__field_declaration_declarator_repeat1, STATE(1537), 1, sym_bitfield_clause, - ACTIONS(3538), 2, + ACTIONS(3557), 2, anon_sym_SEMI, anon_sym___attribute__, - STATE(1368), 2, + STATE(1371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53159] = 5, + [53163] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3546), 1, + ACTIONS(3565), 1, anon_sym_LBRACK, STATE(1301), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3544), 8, + ACTIONS(3563), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -106700,18 +106720,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [53183] = 8, + [53187] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3457), 1, + ACTIONS(3476), 1, sym_identifier, - ACTIONS(3548), 1, + ACTIONS(3567), 1, aux_sym_preproc_if_token2, - ACTIONS(3550), 1, + ACTIONS(3569), 1, aux_sym_preproc_else_token1, - ACTIONS(3552), 1, + ACTIONS(3571), 1, aux_sym_preproc_elif_token1, - ACTIONS(3554), 2, + ACTIONS(3573), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, STATE(1410), 2, @@ -106721,18 +106741,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [53212] = 8, + [53216] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3457), 1, + ACTIONS(3476), 1, sym_identifier, - ACTIONS(3550), 1, + ACTIONS(3569), 1, aux_sym_preproc_else_token1, - ACTIONS(3552), 1, + ACTIONS(3571), 1, aux_sym_preproc_elif_token1, - ACTIONS(3556), 1, + ACTIONS(3575), 1, aux_sym_preproc_if_token2, - ACTIONS(3554), 2, + ACTIONS(3573), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, STATE(1348), 2, @@ -106742,18 +106762,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [53241] = 8, + [53245] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2756), 1, sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(1407), 1, + STATE(1403), 1, sym__declarator, STATE(1803), 1, sym_ms_based_modifier, @@ -106763,61 +106783,60 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [53270] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3558), 1, - sym_identifier, - ACTIONS(3561), 1, - aux_sym_preproc_if_token1, - ACTIONS(3567), 1, - sym_preproc_directive, - ACTIONS(3570), 1, - anon_sym_RBRACE, - ACTIONS(3564), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1889), 2, - sym_preproc_call, - sym_enumerator, - STATE(1328), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [53299] = 9, + [53274] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3497), 1, + ACTIONS(3516), 1, aux_sym_preproc_if_token2, - ACTIONS(3514), 1, + ACTIONS(3533), 1, sym_identifier, - ACTIONS(3572), 1, + ACTIONS(3577), 1, aux_sym_preproc_else_token1, - ACTIONS(3574), 1, + ACTIONS(3579), 1, aux_sym_preproc_elif_token1, - STATE(1349), 1, + STATE(1331), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, STATE(1963), 1, sym_enumerator, - ACTIONS(3576), 2, + ACTIONS(3581), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, STATE(1919), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [53330] = 8, + [53305] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3527), 1, + anon_sym_LPAREN2, + ACTIONS(3559), 1, + anon_sym_LBRACK, + STATE(1395), 1, + sym_parameter_list, + STATE(1371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3583), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [53332] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3457), 1, + ACTIONS(3476), 1, sym_identifier, - ACTIONS(3550), 1, + ACTIONS(3569), 1, aux_sym_preproc_else_token1, - ACTIONS(3552), 1, + ACTIONS(3571), 1, aux_sym_preproc_elif_token1, - ACTIONS(3578), 1, + ACTIONS(3585), 1, aux_sym_preproc_if_token2, - ACTIONS(3554), 2, + ACTIONS(3573), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, STATE(1325), 2, @@ -106827,165 +106846,187 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [53359] = 9, + [53361] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(3533), 1, sym_identifier, - ACTIONS(3572), 1, + ACTIONS(3577), 1, aux_sym_preproc_else_token1, - ACTIONS(3574), 1, + ACTIONS(3579), 1, aux_sym_preproc_elif_token1, - ACTIONS(3580), 1, + ACTIONS(3587), 1, aux_sym_preproc_if_token2, - STATE(1336), 1, + STATE(1409), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, STATE(1963), 1, sym_enumerator, - ACTIONS(3576), 2, + ACTIONS(3581), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1944), 3, + STATE(1779), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [53390] = 8, + [53392] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(3533), 1, sym_identifier, - ACTIONS(2944), 1, - anon_sym_LPAREN2, - ACTIONS(2946), 1, - anon_sym_STAR, - STATE(1425), 1, - sym__declarator, - STATE(1803), 1, - sym_ms_based_modifier, - STATE(1354), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [53419] = 8, + ACTIONS(3577), 1, + aux_sym_preproc_else_token1, + ACTIONS(3579), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3589), 1, + aux_sym_preproc_if_token2, + STATE(1338), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1963), 1, + sym_enumerator, + ACTIONS(3581), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1944), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [53423] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2952), 1, + ACTIONS(2969), 1, sym_identifier, - ACTIONS(2954), 1, + ACTIONS(2971), 1, anon_sym_LPAREN2, - ACTIONS(2956), 1, + ACTIONS(2973), 1, anon_sym_STAR, - STATE(1429), 1, + STATE(1428), 1, sym__field_declarator, - STATE(1817), 1, + STATE(1929), 1, sym_ms_based_modifier, - STATE(1399), 5, + STATE(1398), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [53448] = 7, + [53452] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1753), 1, + anon_sym___based, + ACTIONS(2756), 1, + sym_identifier, + ACTIONS(2975), 1, + anon_sym_LPAREN2, + ACTIONS(2977), 1, + anon_sym_STAR, + STATE(1432), 1, + sym__declarator, + STATE(1803), 1, + sym_ms_based_modifier, + STATE(1354), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [53481] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3540), 1, + ACTIONS(3559), 1, anon_sym_LBRACK, - STATE(1393), 1, + STATE(1395), 1, sym_parameter_list, - STATE(1368), 2, + STATE(1371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3582), 5, + ACTIONS(3591), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [53475] = 7, + [53508] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3540), 1, + ACTIONS(3559), 1, anon_sym_LBRACK, - STATE(1393), 1, + STATE(1395), 1, sym_parameter_list, - STATE(1368), 2, + STATE(1371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3584), 5, + ACTIONS(3593), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [53502] = 9, + [53535] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(1753), 1, + anon_sym___based, + ACTIONS(2969), 1, sym_identifier, - ACTIONS(3572), 1, + ACTIONS(2971), 1, + anon_sym_LPAREN2, + ACTIONS(2973), 1, + anon_sym_STAR, + STATE(1343), 1, + sym__field_declarator, + STATE(1929), 1, + sym_ms_based_modifier, + STATE(1398), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [53564] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3533), 1, + sym_identifier, + ACTIONS(3577), 1, aux_sym_preproc_else_token1, - ACTIONS(3574), 1, + ACTIONS(3579), 1, aux_sym_preproc_elif_token1, - ACTIONS(3586), 1, + ACTIONS(3595), 1, aux_sym_preproc_if_token2, STATE(1409), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, STATE(1963), 1, sym_enumerator, - ACTIONS(3576), 2, + ACTIONS(3581), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, STATE(1939), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [53533] = 8, + [53595] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 1, - anon_sym___based, - ACTIONS(2952), 1, + ACTIONS(3476), 1, sym_identifier, - ACTIONS(2954), 1, - anon_sym_LPAREN2, - ACTIONS(2956), 1, - anon_sym_STAR, - STATE(1342), 1, - sym__field_declarator, - STATE(1817), 1, - sym_ms_based_modifier, - STATE(1399), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [53562] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3457), 1, - sym_identifier, - ACTIONS(3550), 1, + ACTIONS(3569), 1, aux_sym_preproc_else_token1, - ACTIONS(3552), 1, + ACTIONS(3571), 1, aux_sym_preproc_elif_token1, - ACTIONS(3588), 1, + ACTIONS(3597), 1, aux_sym_preproc_if_token2, - ACTIONS(3554), 2, + ACTIONS(3573), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, STATE(1410), 2, @@ -106995,59 +107036,59 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [53591] = 9, + [53624] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(3601), 1, + anon_sym___attribute__, + ACTIONS(3543), 2, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(3599), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3604), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(3545), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [53649] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3533), 1, sym_identifier, - ACTIONS(3572), 1, + ACTIONS(3577), 1, aux_sym_preproc_else_token1, - ACTIONS(3574), 1, + ACTIONS(3579), 1, aux_sym_preproc_elif_token1, - ACTIONS(3590), 1, + ACTIONS(3606), 1, aux_sym_preproc_if_token2, STATE(1409), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, STATE(1963), 1, sym_enumerator, - ACTIONS(3576), 2, + ACTIONS(3581), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, STATE(1962), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [53622] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3594), 1, - anon_sym___attribute__, - ACTIONS(3524), 2, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(3592), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3597), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(3526), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [53647] = 8, + [53680] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2756), 1, sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(1396), 1, + STATE(1404), 1, sym__declarator, STATE(1803), 1, sym_ms_based_modifier, @@ -107057,36 +107098,36 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [53676] = 9, + [53709] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3540), 1, + ACTIONS(3559), 1, anon_sym_LBRACK, - ACTIONS(3542), 1, + ACTIONS(3561), 1, anon_sym_COLON, - STATE(1393), 1, + STATE(1395), 1, sym_parameter_list, STATE(1641), 1, sym_bitfield_clause, - STATE(1368), 2, + STATE(1371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3599), 3, + ACTIONS(3608), 3, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, - [53707] = 6, + [53740] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(3610), 1, sym_identifier, - STATE(683), 1, + STATE(687), 1, sym_string_literal, - ACTIONS(3603), 2, + ACTIONS(3612), 2, anon_sym_RPAREN, anon_sym_COLON, STATE(1509), 2, @@ -107098,60 +107139,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [53732] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, - anon_sym_LPAREN2, - ACTIONS(3540), 1, - anon_sym_LBRACK, - STATE(1393), 1, - sym_parameter_list, - STATE(1368), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3605), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [53759] = 9, + [53765] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3459), 1, + ACTIONS(3478), 1, aux_sym_preproc_if_token2, - ACTIONS(3514), 1, + ACTIONS(3533), 1, sym_identifier, - ACTIONS(3572), 1, + ACTIONS(3577), 1, aux_sym_preproc_else_token1, - ACTIONS(3574), 1, + ACTIONS(3579), 1, aux_sym_preproc_elif_token1, STATE(1351), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, STATE(1963), 1, sym_enumerator, - ACTIONS(3576), 2, + ACTIONS(3581), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, STATE(1776), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [53790] = 8, + [53796] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3457), 1, + ACTIONS(3476), 1, sym_identifier, - ACTIONS(3550), 1, + ACTIONS(3569), 1, aux_sym_preproc_else_token1, - ACTIONS(3552), 1, + ACTIONS(3571), 1, aux_sym_preproc_elif_token1, - ACTIONS(3607), 1, + ACTIONS(3614), 1, aux_sym_preproc_if_token2, - ACTIONS(3554), 2, + ACTIONS(3573), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, STATE(1410), 2, @@ -107161,18 +107182,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [53819] = 8, + [53825] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2756), 1, sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(1404), 1, + STATE(1392), 1, sym__declarator, STATE(1803), 1, sym_ms_based_modifier, @@ -107182,18 +107203,18 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [53848] = 8, + [53854] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3457), 1, + ACTIONS(3476), 1, sym_identifier, - ACTIONS(3550), 1, + ACTIONS(3569), 1, aux_sym_preproc_else_token1, - ACTIONS(3552), 1, + ACTIONS(3571), 1, aux_sym_preproc_elif_token1, - ACTIONS(3609), 1, + ACTIONS(3616), 1, aux_sym_preproc_if_token2, - ACTIONS(3554), 2, + ACTIONS(3573), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, STATE(1410), 2, @@ -107203,104 +107224,103 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [53877] = 9, + [53883] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(3618), 1, sym_identifier, - ACTIONS(3572), 1, - aux_sym_preproc_else_token1, - ACTIONS(3574), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3611), 1, - aux_sym_preproc_if_token2, - STATE(1409), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1963), 1, + ACTIONS(3621), 1, + aux_sym_preproc_if_token1, + ACTIONS(3627), 1, + sym_preproc_directive, + ACTIONS(3630), 1, + anon_sym_RBRACE, + ACTIONS(3624), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1889), 2, + sym_preproc_call, sym_enumerator, - ACTIONS(3576), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1779), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [53908] = 7, + STATE(1349), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [53912] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3540), 1, + ACTIONS(3559), 1, anon_sym_LBRACK, - STATE(1393), 1, + STATE(1395), 1, sym_parameter_list, - STATE(1368), 2, + STATE(1371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3613), 5, + ACTIONS(3632), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [53935] = 9, + [53939] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(3533), 1, sym_identifier, - ACTIONS(3572), 1, + ACTIONS(3577), 1, aux_sym_preproc_else_token1, - ACTIONS(3574), 1, + ACTIONS(3579), 1, aux_sym_preproc_elif_token1, - ACTIONS(3615), 1, + ACTIONS(3634), 1, aux_sym_preproc_if_token2, STATE(1409), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, STATE(1963), 1, sym_enumerator, - ACTIONS(3576), 2, + ACTIONS(3581), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, STATE(1864), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [53966] = 9, + [53970] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(3533), 1, sym_identifier, - ACTIONS(3572), 1, + ACTIONS(3577), 1, aux_sym_preproc_else_token1, - ACTIONS(3574), 1, + ACTIONS(3579), 1, aux_sym_preproc_elif_token1, - ACTIONS(3617), 1, + ACTIONS(3636), 1, aux_sym_preproc_if_token2, - STATE(1339), 1, + STATE(1341), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, STATE(1963), 1, sym_enumerator, - ACTIONS(3576), 2, + ACTIONS(3581), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, STATE(1900), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [53997] = 8, + [54001] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1753), 1, anon_sym___based, - ACTIONS(2745), 1, + ACTIONS(2756), 1, sym_identifier, - ACTIONS(2944), 1, + ACTIONS(2975), 1, anon_sym_LPAREN2, - ACTIONS(2946), 1, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(1403), 1, + STATE(1406), 1, sym__declarator, STATE(1803), 1, sym_ms_based_modifier, @@ -107310,12 +107330,12 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [54026] = 3, + [54030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3621), 1, + ACTIONS(3640), 1, anon_sym_LBRACK, - ACTIONS(3619), 9, + ACTIONS(3638), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107325,31 +107345,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [54044] = 7, + [54048] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, - anon_sym_LPAREN2, - ACTIONS(3625), 1, + ACTIONS(3644), 1, anon_sym_LBRACK, - STATE(1428), 1, - sym_parameter_list, - STATE(1386), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3623), 4, + STATE(1529), 1, + sym_gnu_asm_input_operand, + STATE(1990), 1, + sym_string_literal, + ACTIONS(3642), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [54072] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3648), 1, + anon_sym_LBRACK, + ACTIONS(3646), 9, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - [54070] = 3, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [54090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3629), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3627), 9, + ACTIONS(3650), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107359,18 +107393,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [54088] = 10, + [54108] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(129), 1, anon_sym_LBRACE, - ACTIONS(3510), 1, + ACTIONS(3529), 1, anon_sym_LBRACK, - ACTIONS(3631), 1, + ACTIONS(3654), 1, anon_sym_LPAREN2, - ACTIONS(3633), 1, + ACTIONS(3656), 1, anon_sym_EQ, STATE(149), 1, sym_compound_statement, @@ -107381,18 +107415,18 @@ static const uint16_t ts_small_parse_table[] = { STATE(1324), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54120] = 10, + [54140] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(371), 1, anon_sym_LBRACE, - ACTIONS(3510), 1, + ACTIONS(3529), 1, anon_sym_LBRACK, - ACTIONS(3631), 1, + ACTIONS(3654), 1, anon_sym_LPAREN2, - ACTIONS(3633), 1, + ACTIONS(3656), 1, anon_sym_EQ, STATE(401), 1, sym_compound_statement, @@ -107403,77 +107437,58 @@ static const uint16_t ts_small_parse_table[] = { STATE(1324), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54152] = 9, + [54172] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3625), 1, - anon_sym_LBRACK, - ACTIONS(3635), 1, + ACTIONS(3658), 1, anon_sym_COMMA, - STATE(1428), 1, + ACTIONS(3662), 1, + anon_sym_LBRACK, + STATE(1427), 1, sym_parameter_list, STATE(1543), 1, aux_sym__type_definition_declarators_repeat1, - ACTIONS(3637), 2, + ACTIONS(3660), 2, anon_sym_SEMI, anon_sym___attribute__, - STATE(1386), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [54182] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, - anon_sym_LPAREN2, - ACTIONS(3625), 1, - anon_sym_LBRACK, - STATE(1428), 1, - sym_parameter_list, - STATE(1386), 2, + STATE(1382), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3639), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - [54208] = 7, + [54202] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3625), 1, + ACTIONS(3662), 1, anon_sym_LBRACK, - STATE(1428), 1, + STATE(1427), 1, sym_parameter_list, - STATE(1386), 2, + STATE(1382), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3641), 4, + ACTIONS(3664), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [54234] = 10, + [54228] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3510), 1, + ACTIONS(3529), 1, anon_sym_LBRACK, - ACTIONS(3631), 1, + ACTIONS(3654), 1, anon_sym_LPAREN2, - ACTIONS(3633), 1, + ACTIONS(3656), 1, anon_sym_EQ, STATE(419), 1, sym_compound_statement, @@ -107484,12 +107499,31 @@ static const uint16_t ts_small_parse_table[] = { STATE(1324), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54266] = 3, + [54260] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3527), 1, + anon_sym_LPAREN2, + ACTIONS(3662), 1, + anon_sym_LBRACK, + STATE(1427), 1, + sym_parameter_list, + STATE(1382), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3666), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + [54286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3645), 1, + ACTIONS(3670), 1, anon_sym_LBRACK, - ACTIONS(3643), 9, + ACTIONS(3668), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107499,12 +107533,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [54284] = 3, + [54304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3649), 1, + ACTIONS(3674), 1, anon_sym_LBRACK, - ACTIONS(3647), 9, + ACTIONS(3672), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107514,16 +107548,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [54302] = 6, + [54322] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3653), 1, + ACTIONS(3678), 1, anon_sym_LBRACK, STATE(1521), 1, sym_gnu_asm_output_operand, STATE(1826), 1, sym_string_literal, - ACTIONS(3651), 2, + ACTIONS(3676), 2, anon_sym_RPAREN, anon_sym_COLON, ACTIONS(95), 5, @@ -107532,69 +107566,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [54326] = 7, + [54346] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3625), 1, + ACTIONS(3662), 1, anon_sym_LBRACK, - STATE(1428), 1, + STATE(1427), 1, sym_parameter_list, - STATE(1386), 2, + STATE(1382), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3655), 4, + ACTIONS(3680), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [54352] = 3, + [54372] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3659), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3527), 1, + anon_sym_LPAREN2, + ACTIONS(3662), 1, anon_sym_LBRACK, - ACTIONS(3657), 9, + STATE(1427), 1, + sym_parameter_list, + STATE(1382), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3682), 4, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [54370] = 5, + anon_sym___attribute__, + [54398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3663), 1, + ACTIONS(3686), 1, anon_sym_LBRACK, - STATE(1301), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3661), 6, + ACTIONS(3684), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [54392] = 10, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [54416] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(423), 1, anon_sym_LBRACE, - ACTIONS(3510), 1, + ACTIONS(3529), 1, anon_sym_LBRACK, - ACTIONS(3631), 1, + ACTIONS(3654), 1, anon_sym_LPAREN2, - ACTIONS(3633), 1, + ACTIONS(3656), 1, anon_sym_EQ, STATE(336), 1, sym_compound_statement, @@ -107605,45 +107641,29 @@ static const uint16_t ts_small_parse_table[] = { STATE(1324), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54424] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3667), 1, - anon_sym_LBRACK, - STATE(1529), 1, - sym_gnu_asm_input_operand, - STATE(1990), 1, - sym_string_literal, - ACTIONS(3665), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [54448] = 3, + [54448] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3671), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3690), 1, anon_sym_LBRACK, - ACTIONS(3669), 9, + STATE(1301), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3688), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [54466] = 3, + anon_sym___attribute__, + anon_sym_COLON, + [54470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3675), 1, + ACTIONS(3694), 1, anon_sym_LBRACK, - ACTIONS(3673), 9, + ACTIONS(3692), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107653,18 +107673,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [54484] = 9, + [54488] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3529), 1, anon_sym_LBRACK, - ACTIONS(3633), 1, + ACTIONS(3656), 1, anon_sym_EQ, STATE(419), 1, sym_compound_statement, @@ -107673,53 +107693,54 @@ static const uint16_t ts_small_parse_table[] = { STATE(1324), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54513] = 4, + [54517] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3621), 1, - anon_sym_LBRACK, - ACTIONS(3619), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(3677), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [54532] = 9, + ACTIONS(3696), 1, + sym_identifier, + ACTIONS(3700), 1, + sym_system_lib_string, + STATE(1908), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(3698), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [54538] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(423), 1, anon_sym_LBRACE, - ACTIONS(3508), 1, - anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3529), 1, anon_sym_LBRACK, - ACTIONS(3633), 1, - anon_sym_EQ, - STATE(336), 1, + ACTIONS(3654), 1, + anon_sym_LPAREN2, + STATE(326), 1, sym_compound_statement, - STATE(1285), 1, + STATE(989), 1, + sym__old_style_parameter_list, + STATE(1286), 1, sym_parameter_list, STATE(1324), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54561] = 9, + [54567] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(423), 1, + ACTIONS(129), 1, anon_sym_LBRACE, - ACTIONS(3510), 1, + ACTIONS(3529), 1, anon_sym_LBRACK, - ACTIONS(3631), 1, + ACTIONS(3654), 1, anon_sym_LPAREN2, - STATE(326), 1, + STATE(139), 1, sym_compound_statement, STATE(989), 1, sym__old_style_parameter_list, @@ -107728,18 +107749,18 @@ static const uint16_t ts_small_parse_table[] = { STATE(1324), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54590] = 9, + [54596] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(371), 1, anon_sym_LBRACE, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3529), 1, anon_sym_LBRACK, - ACTIONS(3633), 1, + ACTIONS(3656), 1, anon_sym_EQ, STATE(401), 1, sym_compound_statement, @@ -107748,18 +107769,18 @@ static const uint16_t ts_small_parse_table[] = { STATE(1324), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54619] = 9, + [54625] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, + ACTIONS(371), 1, anon_sym_LBRACE, - ACTIONS(3510), 1, + ACTIONS(3529), 1, anon_sym_LBRACK, - ACTIONS(3631), 1, + ACTIONS(3654), 1, anon_sym_LPAREN2, - STATE(139), 1, + STATE(382), 1, sym_compound_statement, STATE(989), 1, sym__old_style_parameter_list, @@ -107768,18 +107789,18 @@ static const uint16_t ts_small_parse_table[] = { STATE(1324), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54648] = 9, + [54654] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(129), 1, anon_sym_LBRACE, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3529), 1, anon_sym_LBRACK, - ACTIONS(3633), 1, + ACTIONS(3656), 1, anon_sym_EQ, STATE(149), 1, sym_compound_statement, @@ -107788,12 +107809,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(1324), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54677] = 5, + [54683] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(3610), 1, sym_identifier, - STATE(683), 1, + STATE(687), 1, sym_string_literal, STATE(1602), 2, sym__string, @@ -107804,114 +107825,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [54698] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3679), 1, - sym_identifier, - ACTIONS(3683), 1, - sym_system_lib_string, - STATE(1908), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(3681), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [54719] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3601), 1, - sym_identifier, - STATE(683), 1, - sym_string_literal, - STATE(1649), 2, - sym__string, - sym_concatenated_string, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [54740] = 9, + [54704] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(371), 1, + ACTIONS(423), 1, anon_sym_LBRACE, - ACTIONS(3510), 1, - anon_sym_LBRACK, - ACTIONS(3631), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - STATE(382), 1, + ACTIONS(3529), 1, + anon_sym_LBRACK, + ACTIONS(3656), 1, + anon_sym_EQ, + STATE(336), 1, sym_compound_statement, - STATE(989), 1, - sym__old_style_parameter_list, - STATE(1286), 1, + STATE(1285), 1, sym_parameter_list, STATE(1324), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54769] = 5, + [54733] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3704), 1, + anon_sym_LBRACK, + STATE(1301), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3702), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + [54754] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(3706), 1, sym_identifier, - ACTIONS(3687), 1, + ACTIONS(3708), 1, sym_system_lib_string, STATE(1931), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(3681), 5, + ACTIONS(3698), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [54790] = 7, + [54775] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3625), 1, + ACTIONS(3662), 1, anon_sym_LBRACK, - STATE(1428), 1, + STATE(1427), 1, sym_parameter_list, - STATE(1386), 2, + STATE(1382), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3689), 3, + ACTIONS(3710), 3, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, - [54815] = 5, + [54800] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3693), 1, - anon_sym_LBRACK, - STATE(1301), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3691), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - [54836] = 5, + ACTIONS(3610), 1, + sym_identifier, + STATE(687), 1, + sym_string_literal, + STATE(1649), 2, + sym__string, + sym_concatenated_string, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [54821] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(3712), 1, + sym_identifier, + ACTIONS(3714), 1, + sym_system_lib_string, + STATE(1812), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(3698), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [54842] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3610), 1, sym_identifier, - STATE(683), 1, + STATE(687), 1, sym_string_literal, STATE(1582), 2, sym__string, @@ -107922,18 +107943,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [54857] = 9, + [54863] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3716), 1, + sym_identifier, + ACTIONS(3718), 1, + sym_system_lib_string, + STATE(1875), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(3698), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [54884] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3510), 1, + ACTIONS(3529), 1, anon_sym_LBRACK, - ACTIONS(3631), 1, + ACTIONS(3654), 1, anon_sym_LPAREN2, - STATE(413), 1, + STATE(414), 1, sym_compound_statement, STATE(989), 1, sym__old_style_parameter_list, @@ -107942,75 +107979,63 @@ static const uint16_t ts_small_parse_table[] = { STATE(1324), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54886] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3695), 1, - sym_identifier, - ACTIONS(3697), 1, - sym_system_lib_string, - STATE(1875), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(3681), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [54907] = 7, + [54913] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1879), 1, anon_sym_LPAREN2, - ACTIONS(1869), 1, + ACTIONS(1881), 1, anon_sym_STAR, - ACTIONS(2753), 1, + ACTIONS(2764), 1, anon_sym_LBRACK, - STATE(1486), 1, + STATE(1488), 1, sym_parameter_list, STATE(1534), 1, sym__abstract_declarator, - STATE(1496), 4, + STATE(1487), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - [54932] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3699), 1, - sym_identifier, - ACTIONS(3701), 1, - sym_system_lib_string, - STATE(1812), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(3681), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [54953] = 3, + [54938] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3705), 1, + ACTIONS(3640), 1, anon_sym_LBRACK, - ACTIONS(3703), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3638), 4, anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3720), 4, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_asm, + anon_sym___asm__, + [54957] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [54969] = 3, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(3527), 1, + anon_sym_LPAREN2, + ACTIONS(3529), 1, + anon_sym_LBRACK, + STATE(145), 1, + sym_compound_statement, + STATE(1286), 1, + sym_parameter_list, + STATE(1324), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [54983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3709), 1, + ACTIONS(3724), 1, anon_sym_LBRACK, - ACTIONS(3707), 7, + ACTIONS(3722), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108018,29 +108043,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [54985] = 7, + [54999] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3529), 1, anon_sym_LBRACK, STATE(1286), 1, sym_parameter_list, - ACTIONS(3711), 2, + ACTIONS(3726), 2, anon_sym_COMMA, anon_sym_RPAREN, STATE(1324), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55009] = 3, + [55023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3715), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3713), 7, + ACTIONS(3728), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108048,61 +108073,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [55025] = 8, + [55039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(423), 1, - anon_sym_LBRACE, - ACTIONS(3508), 1, - anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3734), 1, anon_sym_LBRACK, - STATE(309), 1, - sym_compound_statement, - STATE(1286), 1, - sym_parameter_list, - STATE(1324), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55051] = 8, + ACTIONS(3732), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [55055] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(371), 1, + ACTIONS(423), 1, anon_sym_LBRACE, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3529), 1, anon_sym_LBRACK, - STATE(382), 1, + STATE(326), 1, sym_compound_statement, STATE(1286), 1, sym_parameter_list, STATE(1324), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55077] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3719), 1, - anon_sym_LBRACK, - ACTIONS(3717), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [55093] = 3, + [55081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3723), 1, + ACTIONS(3738), 1, anon_sym_LBRACK, - ACTIONS(3721), 7, + ACTIONS(3736), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108110,12 +108117,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [55109] = 3, + [55097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3727), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3725), 7, + ACTIONS(3740), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108123,159 +108130,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [55125] = 8, + [55113] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3529), 1, anon_sym_LBRACK, - STATE(139), 1, + STATE(433), 1, sym_compound_statement, - STATE(1286), 1, + STATE(1285), 1, sym_parameter_list, STATE(1324), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55151] = 8, + [55139] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(371), 1, + ACTIONS(129), 1, anon_sym_LBRACE, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3529), 1, anon_sym_LBRACK, - STATE(392), 1, + STATE(139), 1, sym_compound_statement, - STATE(1285), 1, + STATE(1286), 1, sym_parameter_list, STATE(1324), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55177] = 8, + [55165] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + ACTIONS(371), 1, anon_sym_LBRACE, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3529), 1, anon_sym_LBRACK, - STATE(427), 1, + STATE(392), 1, sym_compound_statement, - STATE(1286), 1, + STATE(1285), 1, sym_parameter_list, STATE(1324), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55203] = 8, + [55191] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, + ACTIONS(371), 1, anon_sym_LBRACE, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3529), 1, anon_sym_LBRACK, - STATE(145), 1, + STATE(347), 1, sym_compound_statement, STATE(1286), 1, sym_parameter_list, STATE(1324), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55229] = 8, + [55217] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(423), 1, anon_sym_LBRACE, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3529), 1, anon_sym_LBRACK, - STATE(326), 1, + STATE(309), 1, sym_compound_statement, STATE(1286), 1, sym_parameter_list, STATE(1324), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55255] = 8, + [55243] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3746), 1, + anon_sym_LBRACK, + ACTIONS(3744), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [55259] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3529), 1, anon_sym_LBRACK, - STATE(433), 1, + STATE(427), 1, sym_compound_statement, - STATE(1285), 1, + STATE(1286), 1, sym_parameter_list, STATE(1324), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55281] = 8, + [55285] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3748), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [55301] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(371), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3529), 1, anon_sym_LBRACK, - STATE(347), 1, + STATE(414), 1, sym_compound_statement, STATE(1286), 1, sym_parameter_list, STATE(1324), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55307] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3667), 1, - anon_sym_LBRACK, - STATE(1675), 1, - sym_gnu_asm_input_operand, - STATE(1990), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, [55327] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3729), 1, + ACTIONS(3752), 1, sym_identifier, - ACTIONS(3734), 1, + ACTIONS(3757), 1, aux_sym_preproc_elif_token1, STATE(1409), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, STATE(1963), 1, sym_enumerator, - ACTIONS(3732), 4, + ACTIONS(3755), 4, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -108283,73 +108301,78 @@ static const uint16_t ts_small_parse_table[] = { [55349] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3736), 1, + ACTIONS(3759), 1, sym_identifier, - ACTIONS(3741), 1, + ACTIONS(3764), 1, aux_sym_preproc_elif_token1, STATE(1410), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(3739), 4, + ACTIONS(3762), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [55369] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3768), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3770), 1, + anon_sym_EQ, + ACTIONS(3766), 6, + anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [55369] = 8, + sym_identifier, + [55387] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + ACTIONS(423), 1, anon_sym_LBRACE, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3529), 1, anon_sym_LBRACK, - STATE(413), 1, + STATE(328), 1, sym_compound_statement, - STATE(1286), 1, + STATE(1285), 1, sym_parameter_list, STATE(1324), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55395] = 3, + [55413] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3743), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [55411] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3749), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3751), 1, - anon_sym_EQ, - ACTIONS(3747), 6, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [55429] = 8, + ACTIONS(371), 1, + anon_sym_LBRACE, + ACTIONS(3527), 1, + anon_sym_LPAREN2, + ACTIONS(3529), 1, + anon_sym_LBRACK, + STATE(382), 1, + sym_compound_statement, + STATE(1286), 1, + sym_parameter_list, + STATE(1324), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [55439] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(129), 1, anon_sym_LBRACE, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3529), 1, anon_sym_LBRACK, STATE(128), 1, sym_compound_statement, @@ -108358,12 +108381,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(1324), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55455] = 3, + [55465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3755), 1, + ACTIONS(3774), 1, anon_sym_LBRACK, - ACTIONS(3753), 7, + ACTIONS(3772), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108371,12 +108394,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [55471] = 3, + [55481] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 1, + ACTIONS(3644), 1, + anon_sym_LBRACK, + STATE(1675), 1, + sym_gnu_asm_input_operand, + STATE(1990), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [55501] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3778), 1, anon_sym_LBRACK, - ACTIONS(3757), 7, + ACTIONS(3776), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108384,28 +108422,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [55487] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(423), 1, - anon_sym_LBRACE, - ACTIONS(3508), 1, - anon_sym_LPAREN2, - ACTIONS(3510), 1, - anon_sym_LBRACK, - STATE(328), 1, - sym_compound_statement, - STATE(1285), 1, - sym_parameter_list, - STATE(1324), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55513] = 5, + [55517] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3653), 1, + ACTIONS(3678), 1, anon_sym_LBRACK, STATE(1637), 1, sym_gnu_asm_output_operand, @@ -108417,452 +108437,439 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [55533] = 3, + [55537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 1, + ACTIONS(3782), 1, anon_sym_LBRACK, - ACTIONS(3761), 6, + ACTIONS(3780), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [55548] = 4, + [55552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3767), 1, + ACTIONS(3786), 1, + anon_sym_LBRACK, + ACTIONS(3784), 6, anon_sym_COMMA, - ACTIONS(3769), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3765), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [55565] = 7, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [55567] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3529), 1, anon_sym_LBRACK, - ACTIONS(3771), 1, + ACTIONS(3788), 1, anon_sym_RPAREN, STATE(1286), 1, sym_parameter_list, STATE(1324), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55588] = 3, + [55590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3775), 1, + ACTIONS(3792), 1, anon_sym_LBRACK, - ACTIONS(3773), 6, + ACTIONS(3790), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [55603] = 3, + [55605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3779), 1, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3777), 6, + ACTIONS(3794), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [55618] = 4, + [55620] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3461), 1, anon_sym___attribute__, - STATE(1433), 2, + STATE(1434), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(3467), 4, + ACTIONS(3486), 4, anon_sym_COMMA, anon_sym_SEMI, anon_sym_asm, anon_sym___asm__, - [55635] = 7, + [55637] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3559), 1, anon_sym_LBRACK, - ACTIONS(3781), 1, + ACTIONS(3798), 1, anon_sym_RPAREN, - STATE(1286), 1, + STATE(1395), 1, sym_parameter_list, - STATE(1324), 2, + STATE(1371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55658] = 3, + [55660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 1, + ACTIONS(3802), 1, anon_sym_LBRACK, - ACTIONS(3783), 6, + ACTIONS(3800), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [55673] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, - anon_sym_LPAREN2, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3787), 1, - anon_sym_RPAREN, - STATE(1393), 1, - sym_parameter_list, - STATE(1368), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55696] = 3, + [55675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3791), 1, + ACTIONS(3806), 1, anon_sym_LBRACK, - ACTIONS(3789), 6, + ACTIONS(3804), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [55711] = 7, + [55690] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3540), 1, + ACTIONS(3559), 1, anon_sym_LBRACK, - ACTIONS(3793), 1, + ACTIONS(3808), 1, anon_sym_RPAREN, - STATE(1393), 1, + STATE(1395), 1, sym_parameter_list, - STATE(1368), 2, + STATE(1371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55734] = 5, + [55713] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_LBRACK, - ACTIONS(3795), 1, + ACTIONS(3810), 1, anon_sym_EQ, - ACTIONS(3797), 1, + ACTIONS(3812), 1, anon_sym_DOT, STATE(1440), 4, sym_subscript_designator, sym_subscript_range_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - [55753] = 7, + [55732] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3625), 1, + ACTIONS(3662), 1, anon_sym_LBRACK, - ACTIONS(3799), 1, + ACTIONS(3814), 1, anon_sym_RPAREN, - STATE(1428), 1, + STATE(1427), 1, sym_parameter_list, - STATE(1386), 2, + STATE(1382), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55776] = 3, + [55755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3803), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3801), 6, + ACTIONS(3816), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [55791] = 4, + [55770] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3807), 1, - anon_sym___attribute__, - STATE(1433), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3805), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [55808] = 8, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3527), 1, + anon_sym_LPAREN2, + ACTIONS(3529), 1, + anon_sym_LBRACK, + ACTIONS(3820), 1, + anon_sym_RPAREN, + STATE(1286), 1, + sym_parameter_list, + STATE(1324), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [55793] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(2353), 1, + ACTIONS(2368), 1, anon_sym_LBRACE, - ACTIONS(3810), 1, + ACTIONS(3822), 1, sym_identifier, - STATE(788), 1, + STATE(792), 1, sym_field_declaration_list, - STATE(1483), 1, + STATE(1486), 1, sym_attribute_specifier, STATE(1588), 1, sym_ms_declspec_modifier, - [55833] = 3, + [55818] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, + ACTIONS(3826), 1, + anon_sym___attribute__, + STATE(1434), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3824), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [55835] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3831), 1, anon_sym_LBRACK, - ACTIONS(3812), 6, + ACTIONS(3829), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [55848] = 4, + [55850] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3461), 1, anon_sym___attribute__, - STATE(1433), 2, + STATE(1434), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(3816), 4, + ACTIONS(3833), 4, anon_sym_COMMA, anon_sym_SEMI, anon_sym_asm, anon_sym___asm__, - [55865] = 7, + [55867] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3625), 1, + ACTIONS(3662), 1, anon_sym_LBRACK, - ACTIONS(3818), 1, + ACTIONS(3835), 1, anon_sym_RPAREN, - STATE(1428), 1, + STATE(1427), 1, sym_parameter_list, - STATE(1386), 2, + STATE(1382), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55888] = 3, + [55890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3822), 1, + ACTIONS(3839), 1, anon_sym_LBRACK, - ACTIONS(3820), 6, + ACTIONS(3837), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [55903] = 7, + [55905] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3529), 1, anon_sym_LBRACK, - ACTIONS(3633), 1, + ACTIONS(3656), 1, anon_sym_EQ, STATE(1285), 1, sym_parameter_list, STATE(1324), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55926] = 5, + [55928] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3824), 1, + ACTIONS(3841), 1, anon_sym_LBRACK, - ACTIONS(3827), 1, + ACTIONS(3844), 1, anon_sym_EQ, - ACTIONS(3829), 1, + ACTIONS(3846), 1, anon_sym_DOT, STATE(1440), 4, sym_subscript_designator, sym_subscript_range_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - [55945] = 3, + [55947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3834), 1, + ACTIONS(3851), 1, anon_sym_LBRACK, - ACTIONS(3832), 6, + ACTIONS(3849), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [55960] = 3, + [55962] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, - anon_sym_LBRACK, - ACTIONS(3836), 6, + ACTIONS(3855), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [55975] = 4, + ACTIONS(3857), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3853), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [55979] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3840), 1, + ACTIONS(3859), 1, anon_sym_LPAREN2, - STATE(1445), 2, + STATE(1460), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3842), 3, + ACTIONS(3861), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [55991] = 6, + [55995] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(3846), 1, + ACTIONS(3865), 1, anon_sym_SEMI, - STATE(1566), 1, + STATE(1585), 1, aux_sym_declaration_repeat1, - STATE(1625), 1, + STATE(1587), 1, sym_gnu_asm_expression, - ACTIONS(3848), 2, + ACTIONS(3867), 2, anon_sym_asm, anon_sym___asm__, - [56011] = 4, + [56015] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3850), 1, + ACTIONS(3869), 1, anon_sym_LPAREN2, STATE(1445), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3852), 3, + ACTIONS(3871), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [56027] = 5, + [56031] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3857), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - STATE(1490), 1, + STATE(1492), 1, sym_parameter_list, - ACTIONS(3855), 3, + ACTIONS(3874), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [56045] = 5, + [56049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, - anon_sym_LPAREN2, - ACTIONS(3857), 1, - anon_sym_LBRACK, - STATE(1490), 1, - sym_parameter_list, - ACTIONS(3859), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [56063] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3861), 2, + ACTIONS(3878), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3863), 4, + ACTIONS(3880), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [56077] = 5, + [56063] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3857), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - STATE(1490), 1, + STATE(1492), 1, sym_parameter_list, - ACTIONS(3865), 3, + ACTIONS(3882), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [56095] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3844), 1, - anon_sym_COMMA, - ACTIONS(3867), 1, - anon_sym_SEMI, - STATE(1575), 1, - aux_sym_declaration_repeat1, - STATE(1576), 1, - sym_gnu_asm_expression, - ACTIONS(3848), 2, - anon_sym_asm, - anon_sym___asm__, - [56115] = 6, + [56081] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3510), 1, + ACTIONS(3529), 1, anon_sym_LBRACK, STATE(1285), 1, sym_parameter_list, STATE(1324), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56135] = 3, + [56101] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3863), 1, + anon_sym_COMMA, + ACTIONS(3884), 1, + anon_sym_SEMI, + STATE(1575), 1, + aux_sym_declaration_repeat1, + STATE(1576), 1, + sym_gnu_asm_expression, + ACTIONS(3867), 2, + anon_sym_asm, + anon_sym___asm__, + [56121] = 3, ACTIONS(3), 1, sym_comment, STATE(1871), 1, @@ -108873,54 +108880,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [56149] = 3, + [56135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3869), 2, + ACTIONS(3886), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3871), 4, + ACTIONS(3888), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [56163] = 3, + [56149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3873), 2, + ACTIONS(3890), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3875), 4, + ACTIONS(3892), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [56177] = 3, + [56163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3877), 2, + ACTIONS(3630), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3879), 4, + ACTIONS(3894), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [56191] = 3, + [56177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3570), 2, + ACTIONS(3896), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3881), 4, + ACTIONS(3898), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [56205] = 3, + [56191] = 3, ACTIONS(3), 1, sym_comment, - STATE(662), 1, + STATE(664), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -108928,7 +108935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [56219] = 3, + [56205] = 3, ACTIONS(3), 1, sym_comment, STATE(1849), 1, @@ -108939,4040 +108946,4053 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [56233] = 6, + [56219] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(3883), 1, + ACTIONS(3900), 1, anon_sym_SEMI, - STATE(1639), 1, + STATE(1592), 1, sym_gnu_asm_expression, - STATE(1662), 1, + STATE(1598), 1, aux_sym_declaration_repeat1, - ACTIONS(3848), 2, + ACTIONS(3867), 2, anon_sym_asm, anon_sym___asm__, - [56253] = 6, + [56239] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3527), 1, + anon_sym_LPAREN2, + ACTIONS(3876), 1, + anon_sym_LBRACK, + STATE(1492), 1, + sym_parameter_list, + ACTIONS(3902), 3, anon_sym_COMMA, - ACTIONS(3885), 1, - anon_sym_SEMI, - STATE(1592), 1, - sym_gnu_asm_expression, - STATE(1600), 1, - aux_sym_declaration_repeat1, - ACTIONS(3848), 2, - anon_sym_asm, - anon_sym___asm__, + anon_sym_RPAREN, + anon_sym_COLON, + [56257] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3904), 1, + anon_sym_LPAREN2, + STATE(1445), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(3861), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, [56273] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(3887), 1, + ACTIONS(3906), 1, anon_sym_SEMI, - STATE(1608), 1, + STATE(1639), 1, sym_gnu_asm_expression, - STATE(1609), 1, + STATE(1662), 1, aux_sym_declaration_repeat1, - ACTIONS(3848), 2, + ACTIONS(3867), 2, anon_sym_asm, anon_sym___asm__, [56293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3889), 2, + ACTIONS(3908), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3891), 4, + ACTIONS(3910), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [56307] = 4, + [56307] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3893), 1, - anon_sym_LPAREN2, - STATE(1443), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3842), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [56323] = 3, + ACTIONS(3863), 1, + anon_sym_COMMA, + ACTIONS(3912), 1, + anon_sym_SEMI, + STATE(1566), 1, + aux_sym_declaration_repeat1, + STATE(1625), 1, + sym_gnu_asm_expression, + ACTIONS(3867), 2, + anon_sym_asm, + anon_sym___asm__, + [56327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3895), 2, + ACTIONS(3914), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3897), 4, + ACTIONS(3916), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [56337] = 3, + [56341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3734), 1, + ACTIONS(3757), 1, aux_sym_preproc_elif_token1, - ACTIONS(3732), 5, + ACTIONS(3755), 5, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_identifier, - [56351] = 6, + [56355] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(3899), 1, + ACTIONS(3918), 1, anon_sym_SEMI, - STATE(1571), 1, - aux_sym_declaration_repeat1, - STATE(1572), 1, + STATE(1608), 1, sym_gnu_asm_expression, - ACTIONS(3848), 2, + STATE(1609), 1, + aux_sym_declaration_repeat1, + ACTIONS(3867), 2, anon_sym_asm, anon_sym___asm__, - [56371] = 3, + [56375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3901), 2, + ACTIONS(3920), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3903), 4, + ACTIONS(3922), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [56385] = 6, + [56389] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(3905), 1, + ACTIONS(3924), 1, anon_sym_SEMI, - STATE(1681), 1, + STATE(1652), 1, sym_gnu_asm_expression, - STATE(1682), 1, + STATE(1653), 1, aux_sym_declaration_repeat1, - ACTIONS(3848), 2, + ACTIONS(3867), 2, anon_sym_asm, anon_sym___asm__, - [56405] = 5, + [56409] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3857), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - STATE(1490), 1, + STATE(1492), 1, sym_parameter_list, - ACTIONS(3907), 3, + ACTIONS(3926), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [56423] = 6, + [56427] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(3909), 1, + ACTIONS(3928), 1, anon_sym_SEMI, - STATE(1628), 1, - sym_gnu_asm_expression, - STATE(1636), 1, + STATE(1571), 1, aux_sym_declaration_repeat1, - ACTIONS(3848), 2, + STATE(1572), 1, + sym_gnu_asm_expression, + ACTIONS(3867), 2, anon_sym_asm, anon_sym___asm__, - [56443] = 6, + [56447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, - anon_sym_COMMA, - ACTIONS(3911), 1, - anon_sym_SEMI, - STATE(1652), 1, - sym_gnu_asm_expression, - STATE(1653), 1, - aux_sym_declaration_repeat1, - ACTIONS(3848), 2, - anon_sym_asm, - anon_sym___asm__, - [56463] = 6, + ACTIONS(3878), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(3880), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [56461] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(3913), 1, + ACTIONS(3930), 1, anon_sym_SEMI, - STATE(1585), 1, - aux_sym_declaration_repeat1, - STATE(1587), 1, + STATE(1628), 1, sym_gnu_asm_expression, - ACTIONS(3848), 2, + STATE(1636), 1, + aux_sym_declaration_repeat1, + ACTIONS(3867), 2, anon_sym_asm, anon_sym___asm__, - [56483] = 5, + [56481] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3857), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - STATE(1490), 1, + STATE(1492), 1, sym_parameter_list, - ACTIONS(3915), 3, + ACTIONS(3932), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [56501] = 5, + [56499] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3857), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - STATE(1490), 1, + STATE(1492), 1, sym_parameter_list, - ACTIONS(3917), 3, + ACTIONS(3934), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [56519] = 5, + [56517] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3857), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - STATE(1490), 1, + STATE(1492), 1, sym_parameter_list, - ACTIONS(3919), 3, + ACTIONS(3936), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [56537] = 3, + [56535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3921), 2, + ACTIONS(3938), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3923), 4, + ACTIONS(3940), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [56551] = 6, + [56549] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(3925), 1, + ACTIONS(3942), 1, anon_sym_SEMI, STATE(1577), 1, aux_sym_declaration_repeat1, STATE(1578), 1, sym_gnu_asm_expression, - ACTIONS(3848), 2, + ACTIONS(3867), 2, anon_sym_asm, anon_sym___asm__, - [56571] = 3, + [56569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3877), 2, + ACTIONS(3896), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3879), 4, + ACTIONS(3898), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [56585] = 3, + [56583] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3861), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(3863), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [56599] = 6, + ACTIONS(3863), 1, + anon_sym_COMMA, + ACTIONS(3944), 1, + anon_sym_SEMI, + STATE(1681), 1, + sym_gnu_asm_expression, + STATE(1682), 1, + aux_sym_declaration_repeat1, + ACTIONS(3867), 2, + anon_sym_asm, + anon_sym___asm__, + [56603] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(3927), 1, + ACTIONS(3946), 1, anon_sym_SEMI, STATE(1601), 1, sym_gnu_asm_expression, STATE(1605), 1, aux_sym_declaration_repeat1, - ACTIONS(3848), 2, + ACTIONS(3867), 2, anon_sym_asm, anon_sym___asm__, - [56619] = 2, + [56623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3929), 5, + ACTIONS(3948), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56630] = 2, + [56634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3931), 5, + ACTIONS(3950), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56641] = 6, + [56645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2353), 1, - anon_sym_LBRACE, - ACTIONS(3933), 1, - sym_identifier, - STATE(783), 1, - sym_field_declaration_list, - STATE(1599), 1, - sym_ms_declspec_modifier, - [56660] = 2, + ACTIONS(3952), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [56656] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3935), 5, + ACTIONS(3954), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56671] = 5, + [56667] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, - ACTIONS(3939), 1, + ACTIONS(3958), 1, anon_sym_COLON_COLON, STATE(1728), 1, sym_argument_list, - ACTIONS(3937), 2, + ACTIONS(3956), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [56688] = 2, + [56684] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2368), 1, + anon_sym_LBRACE, + ACTIONS(3960), 1, + sym_identifier, + STATE(784), 1, + sym_field_declaration_list, + STATE(1599), 1, + sym_ms_declspec_modifier, + [56703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3941), 5, + ACTIONS(3962), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56699] = 2, + [56714] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3943), 5, + ACTIONS(3964), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56710] = 2, + [56725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3945), 5, + ACTIONS(3966), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56721] = 2, + [56736] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3947), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3527), 1, anon_sym_LPAREN2, + ACTIONS(3876), 1, anon_sym_LBRACK, - anon_sym_COLON, - [56732] = 2, + STATE(1492), 1, + sym_parameter_list, + ACTIONS(3726), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56753] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3949), 5, + STATE(1698), 1, + sym_gnu_asm_expression, + ACTIONS(3867), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(3968), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [56743] = 5, + anon_sym_SEMI, + [56768] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, - anon_sym_LPAREN2, - ACTIONS(3857), 1, - anon_sym_LBRACK, - STATE(1490), 1, - sym_parameter_list, - ACTIONS(3711), 2, + ACTIONS(3970), 5, anon_sym_COMMA, anon_sym_RPAREN, - [56760] = 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [56779] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3951), 5, + ACTIONS(3972), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56771] = 6, + [56790] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3457), 1, + ACTIONS(3476), 1, sym_identifier, - ACTIONS(3953), 1, + ACTIONS(3974), 1, aux_sym_preproc_if_token2, - STATE(1420), 1, + STATE(1442), 1, sym_enumerator, STATE(1553), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, STATE(1554), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - [56790] = 4, + [56809] = 4, ACTIONS(3), 1, sym_comment, STATE(1766), 1, sym_gnu_asm_expression, - ACTIONS(3848), 2, + ACTIONS(3867), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(3955), 2, + ACTIONS(3976), 2, anon_sym_COMMA, anon_sym_SEMI, - [56805] = 2, + [56824] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3957), 5, + ACTIONS(3978), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56816] = 2, + [56835] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3959), 5, + ACTIONS(3980), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56827] = 2, + [56846] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3961), 5, + ACTIONS(3982), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56838] = 6, + [56857] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(2353), 1, + ACTIONS(2368), 1, anon_sym_LBRACE, - ACTIONS(3963), 1, + ACTIONS(3984), 1, sym_identifier, - STATE(782), 1, + STATE(803), 1, sym_field_declaration_list, STATE(1603), 1, sym_ms_declspec_modifier, - [56857] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1698), 1, - sym_gnu_asm_expression, - ACTIONS(3848), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(3965), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [56872] = 2, + [56876] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3967), 5, + ACTIONS(3986), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56883] = 2, + [56887] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3969), 4, + ACTIONS(3988), 4, anon_sym_COMMA, anon_sym_SEMI, anon_sym_asm, anon_sym___asm__, - [56893] = 4, - ACTIONS(3211), 1, + [56897] = 4, + ACTIONS(3230), 1, sym_comment, - ACTIONS(3971), 1, + ACTIONS(3990), 1, anon_sym_SQUOTE, STATE(1560), 1, aux_sym_char_literal_repeat1, - ACTIONS(3973), 2, + ACTIONS(3992), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [56907] = 4, + [56911] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3461), 1, anon_sym___attribute__, - ACTIONS(3975), 1, + ACTIONS(3994), 1, anon_sym_SEMI, - STATE(1433), 2, + STATE(1434), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [56921] = 4, + [56925] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3461), 1, anon_sym___attribute__, - ACTIONS(3977), 1, + ACTIONS(3996), 1, anon_sym_SEMI, - STATE(1433), 2, + STATE(1434), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [56935] = 4, + [56939] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3461), 1, anon_sym___attribute__, - ACTIONS(3979), 1, + ACTIONS(3998), 1, anon_sym_SEMI, STATE(1503), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [56949] = 5, + [56953] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3981), 1, + ACTIONS(4000), 1, anon_sym_COMMA, - ACTIONS(3983), 1, + ACTIONS(4002), 1, anon_sym_RPAREN, STATE(1569), 1, aux_sym_parameter_list_repeat1, STATE(1658), 1, aux_sym__old_style_parameter_list_repeat1, - [56965] = 4, + [56969] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3985), 1, + ACTIONS(4004), 1, anon_sym___except, - ACTIONS(3987), 1, + ACTIONS(4006), 1, anon_sym___finally, STATE(191), 2, sym_seh_except_clause, sym_seh_finally_clause, - [56979] = 4, + [56983] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3461), 1, anon_sym___attribute__, - ACTIONS(3989), 1, + ACTIONS(4008), 1, anon_sym_SEMI, STATE(1504), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [56993] = 4, + [56997] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3991), 1, + ACTIONS(4010), 1, anon_sym_COMMA, STATE(1533), 1, aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(3993), 2, + ACTIONS(4012), 2, anon_sym_RPAREN, anon_sym_COLON, - [57007] = 4, + [57011] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3461), 1, anon_sym___attribute__, - ACTIONS(3995), 1, + ACTIONS(4014), 1, anon_sym_SEMI, STATE(1535), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [57021] = 4, + [57025] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3461), 1, anon_sym___attribute__, - ACTIONS(3997), 1, + ACTIONS(4016), 1, anon_sym_SEMI, - STATE(1433), 2, + STATE(1434), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [57035] = 4, + [57039] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3999), 1, + ACTIONS(4018), 1, anon_sym_COMMA, STATE(1512), 1, aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4002), 2, + ACTIONS(4021), 2, anon_sym_SEMI, anon_sym___attribute__, - [57049] = 4, + [57053] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4004), 1, + ACTIONS(4023), 1, anon_sym_COMMA, STATE(1532), 1, aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4006), 2, + ACTIONS(4025), 2, anon_sym_RPAREN, anon_sym_COLON, - [57063] = 5, - ACTIONS(3211), 1, + [57067] = 5, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4008), 1, + ACTIONS(4027), 1, aux_sym_preproc_include_token2, - ACTIONS(4010), 1, + ACTIONS(4029), 1, anon_sym_LPAREN, - ACTIONS(4012), 1, + ACTIONS(4031), 1, sym_preproc_arg, STATE(1746), 1, sym_preproc_params, - [57079] = 5, - ACTIONS(3211), 1, + [57083] = 5, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4014), 1, + ACTIONS(4033), 1, anon_sym_DQUOTE, - ACTIONS(4016), 1, + ACTIONS(4035), 1, aux_sym_string_literal_token1, - ACTIONS(4018), 1, + ACTIONS(4037), 1, sym_escape_sequence, STATE(1557), 1, aux_sym_string_literal_repeat1, - [57095] = 4, + [57099] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3536), 1, + ACTIONS(3555), 1, anon_sym_COMMA, STATE(1512), 1, aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4020), 2, + ACTIONS(4039), 2, anon_sym_SEMI, anon_sym___attribute__, - [57109] = 5, - ACTIONS(3211), 1, + [57113] = 5, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4010), 1, + ACTIONS(4029), 1, anon_sym_LPAREN, - ACTIONS(4022), 1, + ACTIONS(4041), 1, aux_sym_preproc_include_token2, - ACTIONS(4024), 1, + ACTIONS(4043), 1, sym_preproc_arg, STATE(1755), 1, sym_preproc_params, - [57125] = 5, - ACTIONS(3211), 1, + [57129] = 5, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4010), 1, + ACTIONS(4029), 1, anon_sym_LPAREN, - ACTIONS(4026), 1, + ACTIONS(4045), 1, aux_sym_preproc_include_token2, - ACTIONS(4028), 1, + ACTIONS(4047), 1, sym_preproc_arg, STATE(1727), 1, sym_preproc_params, - [57141] = 4, + [57145] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4030), 1, + ACTIONS(4049), 1, anon_sym_COMMA, STATE(1519), 1, aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4033), 2, + ACTIONS(4052), 2, anon_sym_RPAREN, anon_sym_COLON, - [57155] = 4, + [57159] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4035), 1, + ACTIONS(4054), 1, anon_sym_COMMA, STATE(1519), 1, aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4037), 2, + ACTIONS(4056), 2, anon_sym_RPAREN, anon_sym_COLON, - [57169] = 4, + [57173] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4035), 1, + ACTIONS(4054), 1, anon_sym_COMMA, STATE(1520), 1, aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4039), 2, + ACTIONS(4058), 2, anon_sym_RPAREN, anon_sym_COLON, - [57183] = 4, - ACTIONS(3211), 1, + [57187] = 4, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4041), 1, + ACTIONS(4060), 1, anon_sym_SQUOTE, STATE(1560), 1, aux_sym_char_literal_repeat1, - ACTIONS(3973), 2, + ACTIONS(3992), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [57197] = 5, + [57201] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3857), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(4043), 1, + ACTIONS(4062), 1, anon_sym_RPAREN, - STATE(1490), 1, + STATE(1492), 1, sym_parameter_list, - [57213] = 2, + [57217] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4045), 4, + ACTIONS(4064), 4, anon_sym_LPAREN2, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [57223] = 5, - ACTIONS(3211), 1, + [57227] = 5, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4047), 1, + ACTIONS(4066), 1, anon_sym_DQUOTE, - ACTIONS(4049), 1, + ACTIONS(4068), 1, aux_sym_string_literal_token1, - ACTIONS(4051), 1, + ACTIONS(4070), 1, sym_escape_sequence, STATE(1515), 1, aux_sym_string_literal_repeat1, - [57239] = 5, - ACTIONS(3211), 1, + [57243] = 5, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4010), 1, + ACTIONS(4029), 1, anon_sym_LPAREN, - ACTIONS(4053), 1, + ACTIONS(4072), 1, aux_sym_preproc_include_token2, - ACTIONS(4055), 1, + ACTIONS(4074), 1, sym_preproc_arg, STATE(1699), 1, sym_preproc_params, - [57255] = 4, + [57259] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3461), 1, anon_sym___attribute__, - ACTIONS(4057), 1, + ACTIONS(4076), 1, anon_sym_SEMI, - STATE(1433), 2, + STATE(1434), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [57269] = 5, - ACTIONS(3211), 1, + [57273] = 5, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(4078), 1, anon_sym_DQUOTE, - ACTIONS(4061), 1, + ACTIONS(4080), 1, aux_sym_string_literal_token1, - ACTIONS(4063), 1, + ACTIONS(4082), 1, sym_escape_sequence, STATE(1564), 1, aux_sym_string_literal_repeat1, - [57285] = 4, + [57289] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4004), 1, + ACTIONS(4023), 1, anon_sym_COMMA, STATE(1513), 1, aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4065), 2, + ACTIONS(4084), 2, anon_sym_RPAREN, anon_sym_COLON, - [57299] = 4, + [57303] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3461), 1, anon_sym___attribute__, - ACTIONS(4067), 1, + ACTIONS(4086), 1, anon_sym_SEMI, - STATE(1433), 2, + STATE(1434), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [57313] = 4, + [57317] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3461), 1, anon_sym___attribute__, - ACTIONS(4069), 1, + ACTIONS(4088), 1, anon_sym_SEMI, STATE(1527), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [57327] = 4, + [57331] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4071), 1, + ACTIONS(4090), 1, anon_sym_COMMA, STATE(1532), 1, aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4074), 2, + ACTIONS(4093), 2, anon_sym_RPAREN, anon_sym_COLON, - [57341] = 4, + [57345] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3991), 1, + ACTIONS(4010), 1, anon_sym_COMMA, STATE(1539), 1, aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4076), 2, + ACTIONS(4095), 2, anon_sym_RPAREN, anon_sym_COLON, - [57355] = 5, + [57359] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, + ACTIONS(3527), 1, anon_sym_LPAREN2, - ACTIONS(3857), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(4078), 1, + ACTIONS(4097), 1, anon_sym_RPAREN, - STATE(1490), 1, + STATE(1492), 1, sym_parameter_list, - [57371] = 4, + [57375] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3461), 1, anon_sym___attribute__, - ACTIONS(4080), 1, + ACTIONS(4099), 1, anon_sym_SEMI, - STATE(1433), 2, + STATE(1434), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [57385] = 4, + [57389] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3536), 1, + ACTIONS(3555), 1, anon_sym_COMMA, STATE(1512), 1, aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4082), 2, + ACTIONS(4101), 2, anon_sym_SEMI, anon_sym___attribute__, - [57399] = 4, + [57403] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3536), 1, + ACTIONS(3555), 1, anon_sym_COMMA, STATE(1516), 1, aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4084), 2, + ACTIONS(4103), 2, anon_sym_SEMI, anon_sym___attribute__, - [57413] = 5, - ACTIONS(3211), 1, + [57417] = 5, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4010), 1, + ACTIONS(4029), 1, anon_sym_LPAREN, - ACTIONS(4086), 1, + ACTIONS(4105), 1, aux_sym_preproc_include_token2, - ACTIONS(4088), 1, + ACTIONS(4107), 1, sym_preproc_arg, STATE(1763), 1, sym_preproc_params, - [57429] = 4, + [57433] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4090), 1, + ACTIONS(4109), 1, anon_sym_COMMA, STATE(1539), 1, aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4093), 2, + ACTIONS(4112), 2, anon_sym_RPAREN, anon_sym_COLON, - [57443] = 4, + [57447] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4095), 1, + ACTIONS(4114), 1, anon_sym___except, - ACTIONS(4097), 1, + ACTIONS(4116), 1, anon_sym___finally, STATE(242), 2, sym_seh_except_clause, sym_seh_finally_clause, - [57457] = 4, + [57461] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4099), 1, + ACTIONS(4118), 1, anon_sym___except, - ACTIONS(4101), 1, + ACTIONS(4120), 1, anon_sym___finally, STATE(86), 2, sym_seh_except_clause, sym_seh_finally_clause, - [57471] = 4, + [57475] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3461), 1, anon_sym___attribute__, - ACTIONS(4103), 1, + ACTIONS(4122), 1, anon_sym_SEMI, STATE(1530), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [57485] = 4, + [57489] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3635), 1, + ACTIONS(3658), 1, anon_sym_COMMA, STATE(1552), 1, aux_sym__type_definition_declarators_repeat1, - ACTIONS(4105), 2, + ACTIONS(4124), 2, anon_sym_SEMI, anon_sym___attribute__, - [57499] = 4, - ACTIONS(3211), 1, + [57503] = 4, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4107), 1, + ACTIONS(4126), 1, anon_sym_SQUOTE, STATE(1560), 1, aux_sym_char_literal_repeat1, - ACTIONS(3973), 2, + ACTIONS(3992), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [57513] = 4, + [57517] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4109), 1, + ACTIONS(4128), 1, anon_sym___except, - ACTIONS(4111), 1, + ACTIONS(4130), 1, anon_sym___finally, STATE(242), 2, sym_seh_except_clause, sym_seh_finally_clause, - [57527] = 5, + [57531] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(3533), 1, sym_identifier, - ACTIONS(3953), 1, + ACTIONS(3974), 1, aux_sym_preproc_if_token2, STATE(1554), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, STATE(1963), 1, sym_enumerator, - [57543] = 4, + [57547] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3461), 1, anon_sym___attribute__, - ACTIONS(4113), 1, + ACTIONS(4132), 1, anon_sym_SEMI, STATE(1511), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [57557] = 5, - ACTIONS(3211), 1, + [57561] = 5, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4010), 1, + ACTIONS(4029), 1, anon_sym_LPAREN, - ACTIONS(4115), 1, + ACTIONS(4134), 1, aux_sym_preproc_include_token2, - ACTIONS(4117), 1, + ACTIONS(4136), 1, sym_preproc_arg, STATE(1762), 1, sym_preproc_params, - [57573] = 5, - ACTIONS(3211), 1, + [57577] = 5, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4010), 1, + ACTIONS(4029), 1, anon_sym_LPAREN, - ACTIONS(4119), 1, + ACTIONS(4138), 1, aux_sym_preproc_include_token2, - ACTIONS(4121), 1, + ACTIONS(4140), 1, sym_preproc_arg, STATE(1718), 1, sym_preproc_params, - [57589] = 4, + [57593] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3461), 1, anon_sym___attribute__, - ACTIONS(4123), 1, + ACTIONS(4142), 1, anon_sym_SEMI, STATE(1559), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [57603] = 4, + [57607] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3461), 1, anon_sym___attribute__, - ACTIONS(4125), 1, + ACTIONS(4144), 1, anon_sym_SEMI, - STATE(1433), 2, + STATE(1434), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [57617] = 4, + [57621] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(4146), 1, anon_sym_COMMA, STATE(1552), 1, aux_sym__type_definition_declarators_repeat1, - ACTIONS(4130), 2, + ACTIONS(4149), 2, anon_sym_SEMI, anon_sym___attribute__, - [57631] = 4, + [57635] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3457), 1, + ACTIONS(3476), 1, sym_identifier, - ACTIONS(4132), 1, + ACTIONS(4151), 1, aux_sym_preproc_if_token2, STATE(1410), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [57645] = 5, + [57649] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(3533), 1, sym_identifier, - ACTIONS(4134), 1, + ACTIONS(4153), 1, aux_sym_preproc_if_token2, STATE(1409), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, STATE(1963), 1, sym_enumerator, - [57661] = 4, + [57665] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3461), 1, anon_sym___attribute__, - ACTIONS(4136), 1, + ACTIONS(4155), 1, anon_sym_SEMI, STATE(1551), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [57675] = 5, - ACTIONS(3211), 1, + [57679] = 5, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4016), 1, + ACTIONS(4035), 1, aux_sym_string_literal_token1, - ACTIONS(4018), 1, + ACTIONS(4037), 1, sym_escape_sequence, - ACTIONS(4138), 1, + ACTIONS(4157), 1, anon_sym_DQUOTE, STATE(1557), 1, aux_sym_string_literal_repeat1, - [57691] = 5, - ACTIONS(3211), 1, + [57695] = 5, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4140), 1, + ACTIONS(4159), 1, anon_sym_DQUOTE, - ACTIONS(4142), 1, + ACTIONS(4161), 1, aux_sym_string_literal_token1, - ACTIONS(4145), 1, + ACTIONS(4164), 1, sym_escape_sequence, STATE(1557), 1, aux_sym_string_literal_repeat1, - [57707] = 5, - ACTIONS(3211), 1, + [57711] = 5, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4148), 1, + ACTIONS(4167), 1, anon_sym_DQUOTE, - ACTIONS(4150), 1, + ACTIONS(4169), 1, aux_sym_string_literal_token1, - ACTIONS(4152), 1, + ACTIONS(4171), 1, sym_escape_sequence, STATE(1556), 1, aux_sym_string_literal_repeat1, - [57723] = 4, + [57727] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3461), 1, anon_sym___attribute__, - ACTIONS(4154), 1, + ACTIONS(4173), 1, anon_sym_SEMI, - STATE(1433), 2, + STATE(1434), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [57737] = 4, - ACTIONS(3211), 1, + [57741] = 4, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4175), 1, anon_sym_SQUOTE, STATE(1560), 1, aux_sym_char_literal_repeat1, - ACTIONS(4158), 2, + ACTIONS(4177), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [57751] = 4, + [57755] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4161), 1, + ACTIONS(4180), 1, anon_sym___except, - ACTIONS(4163), 1, + ACTIONS(4182), 1, anon_sym___finally, STATE(268), 2, sym_seh_except_clause, sym_seh_finally_clause, - [57765] = 4, + [57769] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3457), 1, + ACTIONS(3476), 1, sym_identifier, - ACTIONS(4165), 1, + ACTIONS(4184), 1, aux_sym_preproc_if_token2, STATE(1553), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [57779] = 4, + [57783] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, STATE(1725), 1, sym_argument_list, - ACTIONS(4167), 2, + ACTIONS(4186), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [57793] = 5, - ACTIONS(3211), 1, + [57797] = 5, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4016), 1, + ACTIONS(4035), 1, aux_sym_string_literal_token1, - ACTIONS(4018), 1, + ACTIONS(4037), 1, sym_escape_sequence, - ACTIONS(4169), 1, + ACTIONS(4188), 1, anon_sym_DQUOTE, STATE(1557), 1, aux_sym_string_literal_repeat1, - [57809] = 4, + [57813] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4171), 1, + ACTIONS(4190), 1, anon_sym_SEMI, STATE(1579), 1, aux_sym_declaration_repeat1, - [57822] = 4, + [57826] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4173), 1, + ACTIONS(4192), 1, anon_sym_SEMI, STATE(1579), 1, aux_sym_declaration_repeat1, - [57835] = 4, + [57839] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2984), 1, + ACTIONS(2999), 1, anon_sym_COMMA, - ACTIONS(4175), 1, + ACTIONS(4194), 1, anon_sym_RPAREN, STATE(1666), 1, aux_sym_argument_list_repeat1, - [57848] = 4, + [57852] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4177), 1, + ACTIONS(4196), 1, anon_sym_SEMI, STATE(1579), 1, aux_sym_declaration_repeat1, - [57861] = 4, + [57865] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4179), 1, + ACTIONS(4198), 1, anon_sym_COMMA, - ACTIONS(4181), 1, + ACTIONS(4200), 1, anon_sym_RPAREN, STATE(1633), 1, aux_sym_parameter_list_repeat1, - [57874] = 4, + [57878] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4183), 1, + ACTIONS(4202), 1, anon_sym_SEMI, STATE(1579), 1, aux_sym_declaration_repeat1, - [57887] = 4, + [57891] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4185), 1, + ACTIONS(4204), 1, anon_sym_SEMI, STATE(1579), 1, aux_sym_declaration_repeat1, - [57900] = 4, + [57904] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4187), 1, + ACTIONS(4206), 1, anon_sym_SEMI, STATE(1570), 1, aux_sym_declaration_repeat1, - [57913] = 4, + [57917] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4189), 1, + ACTIONS(4208), 1, anon_sym_SEMI, STATE(1579), 1, aux_sym_declaration_repeat1, - [57926] = 4, + [57930] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4191), 1, + ACTIONS(4210), 1, anon_sym_COMMA, - ACTIONS(4194), 1, + ACTIONS(4213), 1, anon_sym_RPAREN, STATE(1574), 1, aux_sym__old_style_parameter_list_repeat1, - [57939] = 4, + [57943] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4196), 1, + ACTIONS(4215), 1, anon_sym_SEMI, STATE(1579), 1, aux_sym_declaration_repeat1, - [57952] = 4, + [57956] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4198), 1, + ACTIONS(4217), 1, anon_sym_SEMI, STATE(1661), 1, aux_sym_declaration_repeat1, - [57965] = 4, + [57969] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4200), 1, + ACTIONS(4219), 1, anon_sym_SEMI, STATE(1579), 1, aux_sym_declaration_repeat1, - [57978] = 4, + [57982] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4202), 1, + ACTIONS(4221), 1, anon_sym_SEMI, STATE(1590), 1, aux_sym_declaration_repeat1, - [57991] = 4, + [57995] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4204), 1, + ACTIONS(4223), 1, anon_sym_COMMA, - ACTIONS(4207), 1, + ACTIONS(4226), 1, anon_sym_SEMI, STATE(1579), 1, aux_sym_declaration_repeat1, - [58004] = 4, + [58008] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2725), 1, + ACTIONS(2744), 1, anon_sym_LBRACE, - ACTIONS(4209), 1, + ACTIONS(4228), 1, sym_identifier, - STATE(922), 1, + STATE(924), 1, sym_enumerator_list, - [58017] = 4, + [58021] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(4230), 1, anon_sym_COMMA, - ACTIONS(4213), 1, + ACTIONS(4232), 1, anon_sym_RBRACK_RBRACK, STATE(1593), 1, aux_sym_attribute_declaration_repeat1, - [58030] = 4, + [58034] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4215), 1, + ACTIONS(4234), 1, anon_sym_RPAREN, - ACTIONS(4217), 1, + ACTIONS(4236), 1, anon_sym_COLON, STATE(1645), 1, sym_gnu_asm_output_operand_list, - [58043] = 4, + [58047] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2984), 1, + ACTIONS(2999), 1, anon_sym_COMMA, - ACTIONS(2986), 1, + ACTIONS(3007), 1, anon_sym_RPAREN, STATE(1666), 1, aux_sym_argument_list_repeat1, - [58056] = 4, + [58060] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4219), 1, + ACTIONS(4238), 1, anon_sym_SEMI, STATE(1579), 1, aux_sym_declaration_repeat1, - [58069] = 4, + [58073] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4221), 1, + ACTIONS(4240), 1, anon_sym_SEMI, STATE(1579), 1, aux_sym_declaration_repeat1, - [58082] = 4, + [58086] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2996), 1, + ACTIONS(3015), 1, anon_sym_COMMA, - ACTIONS(2998), 1, + ACTIONS(3017), 1, anon_sym_RBRACE, STATE(1616), 1, aux_sym_initializer_list_repeat1, - [58095] = 4, + [58099] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4223), 1, + ACTIONS(4242), 1, anon_sym_SEMI, STATE(1573), 1, aux_sym_declaration_repeat1, - [58108] = 4, + [58112] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2353), 1, + ACTIONS(2368), 1, anon_sym_LBRACE, - ACTIONS(4225), 1, + ACTIONS(4244), 1, sym_identifier, - STATE(783), 1, + STATE(784), 1, sym_field_declaration_list, - [58121] = 4, + [58125] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4227), 1, + ACTIONS(4246), 1, anon_sym_COMMA, - ACTIONS(4229), 1, + ACTIONS(4248), 1, anon_sym_RPAREN, STATE(1621), 1, aux_sym_preproc_params_repeat1, - [58134] = 4, + [58138] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4231), 1, + ACTIONS(4250), 1, anon_sym_SEMI, STATE(1579), 1, aux_sym_declaration_repeat1, - [58147] = 2, + [58151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4233), 3, + ACTIONS(4252), 3, anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - [58156] = 4, + [58160] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4235), 1, + ACTIONS(4254), 1, anon_sym_SEMI, STATE(1646), 1, aux_sym_declaration_repeat1, - [58169] = 4, + [58173] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4237), 1, + ACTIONS(4256), 1, anon_sym_COMMA, - ACTIONS(4240), 1, + ACTIONS(4259), 1, anon_sym_RBRACK_RBRACK, STATE(1593), 1, aux_sym_attribute_declaration_repeat1, - [58182] = 4, + [58186] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4242), 1, + ACTIONS(4261), 1, anon_sym_SEMI, STATE(1584), 1, aux_sym_declaration_repeat1, - [58195] = 4, + [58199] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3198), 1, anon_sym_COMMA, - ACTIONS(4244), 1, + ACTIONS(4263), 1, anon_sym_RPAREN, STATE(1663), 1, aux_sym_preproc_argument_list_repeat1, - [58208] = 4, + [58212] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4246), 1, + ACTIONS(4265), 1, anon_sym_SEMI, STATE(1606), 1, aux_sym_declaration_repeat1, - [58221] = 4, + [58225] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3088), 1, + ACTIONS(3083), 1, anon_sym_RBRACE, - ACTIONS(4248), 1, + ACTIONS(4267), 1, anon_sym_COMMA, STATE(1597), 1, aux_sym_initializer_list_repeat1, - [58234] = 4, + [58238] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4251), 1, - anon_sym_RPAREN, - ACTIONS(4253), 1, - anon_sym_COLON, - STATE(1858), 1, - sym_gnu_asm_goto_list, - [58247] = 4, + ACTIONS(3863), 1, + anon_sym_COMMA, + ACTIONS(4270), 1, + anon_sym_SEMI, + STATE(1579), 1, + aux_sym_declaration_repeat1, + [58251] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2353), 1, + ACTIONS(2368), 1, anon_sym_LBRACE, - ACTIONS(4255), 1, + ACTIONS(4272), 1, sym_identifier, - STATE(794), 1, + STATE(795), 1, sym_field_declaration_list, - [58260] = 4, + [58264] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, - anon_sym_COMMA, - ACTIONS(4257), 1, - anon_sym_SEMI, - STATE(1579), 1, - aux_sym_declaration_repeat1, - [58273] = 4, + ACTIONS(4274), 1, + anon_sym_RPAREN, + ACTIONS(4276), 1, + anon_sym_COLON, + STATE(1858), 1, + sym_gnu_asm_goto_list, + [58277] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4259), 1, + ACTIONS(4278), 1, anon_sym_SEMI, STATE(1619), 1, aux_sym_declaration_repeat1, - [58286] = 4, + [58290] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4217), 1, + ACTIONS(4236), 1, anon_sym_COLON, - ACTIONS(4261), 1, + ACTIONS(4280), 1, anon_sym_RPAREN, STATE(1630), 1, sym_gnu_asm_output_operand_list, - [58299] = 4, + [58303] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2353), 1, + ACTIONS(2368), 1, anon_sym_LBRACE, - ACTIONS(4263), 1, + ACTIONS(4282), 1, sym_identifier, STATE(806), 1, sym_field_declaration_list, - [58312] = 4, + [58316] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2725), 1, + ACTIONS(2744), 1, anon_sym_LBRACE, - ACTIONS(4265), 1, + ACTIONS(4284), 1, sym_identifier, STATE(1120), 1, sym_enumerator_list, - [58325] = 4, + [58329] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4267), 1, + ACTIONS(4286), 1, anon_sym_SEMI, STATE(1579), 1, aux_sym_declaration_repeat1, - [58338] = 4, + [58342] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4269), 1, + ACTIONS(4288), 1, anon_sym_SEMI, STATE(1579), 1, aux_sym_declaration_repeat1, - [58351] = 4, + [58355] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4271), 1, + ACTIONS(4290), 1, anon_sym_SEMI, STATE(1568), 1, aux_sym_declaration_repeat1, - [58364] = 4, + [58368] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4273), 1, + ACTIONS(4292), 1, anon_sym_SEMI, STATE(1620), 1, aux_sym_declaration_repeat1, - [58377] = 4, + [58381] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4275), 1, + ACTIONS(4294), 1, anon_sym_SEMI, STATE(1579), 1, aux_sym_declaration_repeat1, - [58390] = 3, + [58394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4277), 1, + ACTIONS(4296), 1, anon_sym_EQ, - ACTIONS(3747), 2, + ACTIONS(3766), 2, anon_sym_COMMA, anon_sym_RBRACE, - [58401] = 3, - ACTIONS(3211), 1, + [58405] = 3, + ACTIONS(3230), 1, sym_comment, STATE(1544), 1, aux_sym_char_literal_repeat1, - ACTIONS(4279), 2, + ACTIONS(4298), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [58412] = 4, - ACTIONS(3211), 1, + [58416] = 4, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4281), 1, + ACTIONS(4300), 1, aux_sym_preproc_include_token2, - ACTIONS(4283), 1, + ACTIONS(4302), 1, anon_sym_LPAREN2, STATE(1878), 1, sym_preproc_argument_list, - [58425] = 4, + [58429] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3461), 1, anon_sym___attribute__, - ACTIONS(4285), 1, + ACTIONS(4304), 1, anon_sym_SEMI, STATE(1986), 1, sym_attribute_specifier, - [58438] = 4, - ACTIONS(3211), 1, + [58442] = 4, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4283), 1, + ACTIONS(4302), 1, anon_sym_LPAREN2, - ACTIONS(4287), 1, + ACTIONS(4306), 1, aux_sym_preproc_include_token2, STATE(1878), 1, sym_preproc_argument_list, - [58451] = 4, + [58455] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(4230), 1, anon_sym_COMMA, - ACTIONS(4289), 1, + ACTIONS(4308), 1, anon_sym_RBRACK_RBRACK, STATE(1593), 1, aux_sym_attribute_declaration_repeat1, - [58464] = 4, + [58468] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1827), 1, anon_sym_RBRACE, - ACTIONS(4291), 1, + ACTIONS(4310), 1, anon_sym_COMMA, STATE(1597), 1, aux_sym_initializer_list_repeat1, - [58477] = 4, + [58481] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(4230), 1, anon_sym_COMMA, - ACTIONS(4293), 1, + ACTIONS(4312), 1, anon_sym_RBRACK_RBRACK, STATE(1643), 1, aux_sym_attribute_declaration_repeat1, - [58490] = 4, + [58494] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4295), 1, + ACTIONS(4314), 1, anon_sym_SEMI, STATE(1579), 1, aux_sym_declaration_repeat1, - [58503] = 4, + [58507] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4297), 1, + ACTIONS(4316), 1, anon_sym_SEMI, STATE(1579), 1, aux_sym_declaration_repeat1, - [58516] = 4, + [58520] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4299), 1, + ACTIONS(4318), 1, anon_sym_SEMI, STATE(1579), 1, aux_sym_declaration_repeat1, - [58529] = 4, + [58533] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4227), 1, + ACTIONS(4246), 1, anon_sym_COMMA, - ACTIONS(4301), 1, + ACTIONS(4320), 1, anon_sym_RPAREN, STATE(1660), 1, aux_sym_preproc_params_repeat1, - [58542] = 4, + [58546] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4303), 1, + ACTIONS(4322), 1, anon_sym_SEMI, STATE(1627), 1, aux_sym_declaration_repeat1, - [58555] = 2, + [58559] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4305), 3, + ACTIONS(4324), 3, anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - [58564] = 4, - ACTIONS(3211), 1, + [58568] = 4, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4283), 1, + ACTIONS(4302), 1, anon_sym_LPAREN2, - ACTIONS(4307), 1, + ACTIONS(4326), 1, aux_sym_preproc_include_token2, STATE(1878), 1, sym_preproc_argument_list, - [58577] = 4, + [58581] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4309), 1, + ACTIONS(4328), 1, anon_sym_SEMI, STATE(1565), 1, aux_sym_declaration_repeat1, - [58590] = 4, + [58594] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4311), 1, + ACTIONS(4330), 1, anon_sym_SEMI, STATE(1644), 1, aux_sym_declaration_repeat1, - [58603] = 4, + [58607] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4313), 1, + ACTIONS(4332), 1, anon_sym_SEMI, STATE(1579), 1, aux_sym_declaration_repeat1, - [58616] = 4, + [58620] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4315), 1, + ACTIONS(4334), 1, anon_sym_SEMI, STATE(1618), 1, aux_sym_declaration_repeat1, - [58629] = 4, + [58633] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4317), 1, + ACTIONS(4336), 1, anon_sym_RPAREN, - ACTIONS(4319), 1, + ACTIONS(4338), 1, anon_sym_COLON, STATE(1674), 1, sym_gnu_asm_clobber_list, - [58642] = 4, + [58646] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4321), 1, + ACTIONS(4340), 1, anon_sym_RPAREN, - ACTIONS(4323), 1, + ACTIONS(4342), 1, anon_sym_COLON, STATE(1671), 1, sym_gnu_asm_input_operand_list, - [58655] = 4, + [58659] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4325), 1, + ACTIONS(4344), 1, anon_sym_SEMI, STATE(1655), 1, aux_sym_declaration_repeat1, - [58668] = 2, + [58672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4327), 3, + ACTIONS(4346), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [58677] = 4, + [58681] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4329), 1, + ACTIONS(4348), 1, anon_sym_COMMA, - ACTIONS(4332), 1, + ACTIONS(4351), 1, anon_sym_RPAREN, STATE(1633), 1, aux_sym_parameter_list_repeat1, - [58690] = 2, + [58694] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 3, + ACTIONS(4353), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [58699] = 4, + [58703] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4336), 1, + ACTIONS(4355), 1, anon_sym_COMMA, - ACTIONS(4339), 1, + ACTIONS(4358), 1, anon_sym_RPAREN, STATE(1635), 1, aux_sym_gnu_asm_goto_list_repeat1, - [58712] = 4, + [58716] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4341), 1, + ACTIONS(4360), 1, anon_sym_SEMI, STATE(1579), 1, aux_sym_declaration_repeat1, - [58725] = 2, + [58729] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4343), 3, + ACTIONS(4362), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [58734] = 3, + [58738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4347), 1, + ACTIONS(4366), 1, anon_sym_RPAREN, - ACTIONS(4345), 2, + ACTIONS(4364), 2, anon_sym_DOT_DOT_DOT, sym_identifier, - [58745] = 4, + [58749] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4349), 1, + ACTIONS(4368), 1, anon_sym_SEMI, STATE(1667), 1, aux_sym_declaration_repeat1, - [58758] = 4, + [58762] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2984), 1, + ACTIONS(2999), 1, anon_sym_COMMA, - ACTIONS(2994), 1, + ACTIONS(3005), 1, anon_sym_RPAREN, STATE(1583), 1, aux_sym_argument_list_repeat1, - [58771] = 2, + [58775] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4351), 3, + ACTIONS(4370), 3, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, - [58780] = 4, + [58784] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(4230), 1, anon_sym_COMMA, - ACTIONS(4353), 1, + ACTIONS(4372), 1, anon_sym_RBRACK_RBRACK, STATE(1581), 1, aux_sym_attribute_declaration_repeat1, - [58793] = 4, + [58797] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(4230), 1, anon_sym_COMMA, - ACTIONS(4355), 1, + ACTIONS(4374), 1, anon_sym_RBRACK_RBRACK, STATE(1593), 1, aux_sym_attribute_declaration_repeat1, - [58806] = 4, + [58810] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4357), 1, + ACTIONS(4376), 1, anon_sym_SEMI, STATE(1579), 1, aux_sym_declaration_repeat1, - [58819] = 4, + [58823] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4323), 1, + ACTIONS(4342), 1, anon_sym_COLON, - ACTIONS(4359), 1, + ACTIONS(4378), 1, anon_sym_RPAREN, STATE(1629), 1, sym_gnu_asm_input_operand_list, - [58832] = 4, + [58836] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4361), 1, + ACTIONS(4380), 1, anon_sym_SEMI, STATE(1579), 1, aux_sym_declaration_repeat1, - [58845] = 4, + [58849] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4363), 1, + ACTIONS(4382), 1, anon_sym_COMMA, - ACTIONS(4365), 1, + ACTIONS(4384), 1, anon_sym_RPAREN, STATE(1635), 1, aux_sym_gnu_asm_goto_list_repeat1, - [58858] = 4, + [58862] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1745), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4367), 1, + ACTIONS(4386), 1, sym_identifier, STATE(1713), 1, sym_variadic_parameter, - [58871] = 2, + [58875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4369), 3, + ACTIONS(4388), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [58880] = 3, - ACTIONS(3211), 1, + [58884] = 3, + ACTIONS(3230), 1, sym_comment, STATE(1522), 1, aux_sym_char_literal_repeat1, - ACTIONS(4371), 2, + ACTIONS(4390), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [58891] = 4, + [58895] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(4230), 1, anon_sym_COMMA, - ACTIONS(4373), 1, + ACTIONS(4392), 1, anon_sym_RBRACK_RBRACK, STATE(1615), 1, aux_sym_attribute_declaration_repeat1, - [58904] = 4, + [58908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4375), 1, + ACTIONS(4394), 1, anon_sym_SEMI, STATE(1683), 1, aux_sym_declaration_repeat1, - [58917] = 4, + [58921] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4377), 1, + ACTIONS(4396), 1, anon_sym_SEMI, STATE(1579), 1, aux_sym_declaration_repeat1, - [58930] = 4, - ACTIONS(3211), 1, + [58934] = 4, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4283), 1, + ACTIONS(4302), 1, anon_sym_LPAREN2, - ACTIONS(4379), 1, + ACTIONS(4398), 1, aux_sym_preproc_include_token2, STATE(1878), 1, sym_preproc_argument_list, - [58943] = 4, + [58947] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4381), 1, + ACTIONS(4400), 1, anon_sym_SEMI, STATE(1579), 1, aux_sym_declaration_repeat1, - [58956] = 2, + [58960] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4383), 3, + ACTIONS(4402), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [58965] = 4, + [58969] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4404), 1, anon_sym_COMMA, - ACTIONS(4388), 1, + ACTIONS(4407), 1, anon_sym_RPAREN, STATE(1657), 1, aux_sym_generic_expression_repeat1, - [58978] = 4, + [58982] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4390), 1, + ACTIONS(4409), 1, anon_sym_COMMA, - ACTIONS(4392), 1, + ACTIONS(4411), 1, anon_sym_RPAREN, STATE(1574), 1, aux_sym__old_style_parameter_list_repeat1, - [58991] = 4, + [58995] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2984), 1, + ACTIONS(2999), 1, anon_sym_COMMA, - ACTIONS(2992), 1, + ACTIONS(3013), 1, anon_sym_RPAREN, STATE(1679), 1, aux_sym_argument_list_repeat1, - [59004] = 4, + [59008] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4394), 1, + ACTIONS(4413), 1, anon_sym_COMMA, - ACTIONS(4397), 1, + ACTIONS(4416), 1, anon_sym_RPAREN, STATE(1660), 1, aux_sym_preproc_params_repeat1, - [59017] = 4, + [59021] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4399), 1, + ACTIONS(4418), 1, anon_sym_SEMI, STATE(1579), 1, aux_sym_declaration_repeat1, - [59030] = 4, + [59034] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4401), 1, + ACTIONS(4420), 1, anon_sym_SEMI, STATE(1579), 1, aux_sym_declaration_repeat1, - [59043] = 4, + [59047] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3223), 1, + ACTIONS(3242), 1, anon_sym_RPAREN, - ACTIONS(4403), 1, + ACTIONS(4422), 1, anon_sym_COMMA, STATE(1663), 1, aux_sym_preproc_argument_list_repeat1, - [59056] = 4, + [59060] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3461), 1, anon_sym___attribute__, - ACTIONS(4406), 1, + ACTIONS(4425), 1, anon_sym_SEMI, STATE(1855), 1, sym_attribute_specifier, - [59069] = 2, + [59073] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4408), 3, + ACTIONS(4427), 3, anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - [59078] = 4, + [59082] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3056), 1, + ACTIONS(3069), 1, anon_sym_RPAREN, - ACTIONS(4410), 1, + ACTIONS(4429), 1, anon_sym_COMMA, STATE(1666), 1, aux_sym_argument_list_repeat1, - [59091] = 4, + [59095] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4413), 1, + ACTIONS(4432), 1, anon_sym_SEMI, STATE(1579), 1, aux_sym_declaration_repeat1, - [59104] = 4, + [59108] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4415), 1, + ACTIONS(4434), 1, anon_sym_SEMI, STATE(1579), 1, aux_sym_declaration_repeat1, - [59117] = 4, + [59121] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4363), 1, + ACTIONS(4382), 1, anon_sym_COMMA, - ACTIONS(4417), 1, + ACTIONS(4436), 1, anon_sym_RPAREN, STATE(1647), 1, aux_sym_gnu_asm_goto_list_repeat1, - [59130] = 4, + [59134] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4179), 1, + ACTIONS(4198), 1, anon_sym_COMMA, - ACTIONS(4419), 1, + ACTIONS(4438), 1, anon_sym_RPAREN, STATE(1569), 1, aux_sym_parameter_list_repeat1, - [59143] = 4, + [59147] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4319), 1, + ACTIONS(4338), 1, anon_sym_COLON, - ACTIONS(4421), 1, + ACTIONS(4440), 1, anon_sym_RPAREN, - STATE(1598), 1, + STATE(1600), 1, sym_gnu_asm_clobber_list, - [59156] = 4, + [59160] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2984), 1, + ACTIONS(2999), 1, anon_sym_COMMA, - ACTIONS(4423), 1, + ACTIONS(4442), 1, anon_sym_RPAREN, STATE(1666), 1, aux_sym_argument_list_repeat1, - [59169] = 4, + [59173] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3198), 1, anon_sym_COMMA, - ACTIONS(4425), 1, + ACTIONS(4444), 1, anon_sym_RPAREN, STATE(1663), 1, aux_sym_preproc_argument_list_repeat1, - [59182] = 4, + [59186] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4253), 1, + ACTIONS(4276), 1, anon_sym_COLON, - ACTIONS(4427), 1, + ACTIONS(4446), 1, anon_sym_RPAREN, STATE(1788), 1, sym_gnu_asm_goto_list, - [59195] = 2, + [59199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4429), 3, + ACTIONS(4448), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [59204] = 2, + [59208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4431), 3, + ACTIONS(4450), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [59213] = 4, + [59217] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3000), 1, + ACTIONS(3009), 1, anon_sym_COMMA, - ACTIONS(4433), 1, + ACTIONS(4452), 1, anon_sym_RPAREN, STATE(1657), 1, aux_sym_generic_expression_repeat1, - [59226] = 4, + [59230] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3461), 1, anon_sym___attribute__, - ACTIONS(4435), 1, + ACTIONS(4454), 1, anon_sym_SEMI, STATE(1834), 1, sym_attribute_specifier, - [59239] = 4, + [59243] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2984), 1, + ACTIONS(2999), 1, anon_sym_COMMA, - ACTIONS(2990), 1, + ACTIONS(3001), 1, anon_sym_RPAREN, STATE(1666), 1, aux_sym_argument_list_repeat1, - [59252] = 3, - ACTIONS(3211), 1, + [59256] = 3, + ACTIONS(3230), 1, sym_comment, STATE(1502), 1, aux_sym_char_literal_repeat1, - ACTIONS(4437), 2, + ACTIONS(4456), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [59263] = 4, + [59267] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4439), 1, + ACTIONS(4458), 1, anon_sym_SEMI, STATE(1668), 1, aux_sym_declaration_repeat1, - [59276] = 4, + [59280] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4441), 1, + ACTIONS(4460), 1, anon_sym_SEMI, STATE(1579), 1, aux_sym_declaration_repeat1, - [59289] = 4, + [59293] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3863), 1, anon_sym_COMMA, - ACTIONS(4443), 1, + ACTIONS(4462), 1, anon_sym_SEMI, STATE(1579), 1, aux_sym_declaration_repeat1, - [59302] = 4, + [59306] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3198), 1, anon_sym_COMMA, - ACTIONS(4445), 1, + ACTIONS(4464), 1, anon_sym_RPAREN, STATE(1663), 1, aux_sym_preproc_argument_list_repeat1, - [59315] = 2, + [59319] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2982), 3, + ACTIONS(2997), 3, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, - [59324] = 4, + [59328] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2725), 1, + ACTIONS(2744), 1, anon_sym_LBRACE, - ACTIONS(4447), 1, + ACTIONS(4466), 1, sym_identifier, STATE(1120), 1, sym_enumerator_list, - [59337] = 3, + [59341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4449), 1, + ACTIONS(4468), 1, anon_sym_LPAREN2, STATE(1729), 1, sym_parenthesized_expression, - [59347] = 3, + [59351] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, STATE(1540), 1, sym_compound_statement, - [59357] = 3, + [59361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4451), 1, + ACTIONS(4470), 1, anon_sym_LPAREN2, STATE(397), 1, sym_parenthesized_expression, - [59367] = 3, + [59371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4451), 1, + ACTIONS(4470), 1, anon_sym_LPAREN2, STATE(362), 1, sym_parenthesized_expression, - [59377] = 3, + [59381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4453), 1, + ACTIONS(4472), 1, sym_identifier, STATE(1642), 1, sym_attribute, - [59387] = 3, + [59391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4451), 1, + ACTIONS(4470), 1, anon_sym_LPAREN2, STATE(389), 1, sym_parenthesized_expression, - [59397] = 2, + [59401] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3050), 2, + ACTIONS(3065), 2, anon_sym_COMMA, anon_sym_SEMI, - [59405] = 3, + [59409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4449), 1, + ACTIONS(4468), 1, anon_sym_LPAREN2, STATE(1719), 1, sym_parenthesized_expression, - [59415] = 3, + [59419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4451), 1, + ACTIONS(4470), 1, anon_sym_LPAREN2, STATE(361), 1, sym_parenthesized_expression, - [59425] = 3, + [59429] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, STATE(304), 1, sym_compound_statement, - [59435] = 3, + [59439] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, STATE(276), 1, sym_compound_statement, - [59445] = 2, + [59449] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3955), 2, + ACTIONS(3976), 2, anon_sym_COMMA, anon_sym_SEMI, - [59453] = 3, - ACTIONS(3211), 1, + [59457] = 3, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4455), 1, + ACTIONS(4474), 1, aux_sym_preproc_include_token2, - ACTIONS(4457), 1, + ACTIONS(4476), 1, sym_preproc_arg, - [59463] = 3, + [59467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, STATE(1915), 1, sym_argument_list, - [59473] = 3, + [59477] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, STATE(223), 1, sym_compound_statement, - [59483] = 3, - ACTIONS(3211), 1, + [59487] = 3, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4459), 1, + ACTIONS(4478), 1, aux_sym_preproc_include_token2, - ACTIONS(4461), 1, + ACTIONS(4480), 1, sym_preproc_arg, - [59493] = 3, + [59497] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, STATE(1561), 1, sym_compound_statement, - [59503] = 2, + [59507] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3056), 2, + ACTIONS(3069), 2, anon_sym_COMMA, anon_sym_RPAREN, - [59511] = 3, + [59515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2269), 1, anon_sym_LPAREN2, STATE(1979), 1, sym_argument_list, - [59521] = 3, + [59525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4449), 1, + ACTIONS(4468), 1, anon_sym_LPAREN2, STATE(1720), 1, sym_parenthesized_expression, - [59531] = 2, + [59535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4397), 2, + ACTIONS(4416), 2, anon_sym_COMMA, anon_sym_RPAREN, - [59539] = 3, - ACTIONS(3211), 1, + [59543] = 3, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4463), 1, + ACTIONS(4482), 1, aux_sym_preproc_include_token2, - ACTIONS(4465), 1, + ACTIONS(4484), 1, sym_preproc_arg, - [59549] = 3, + [59553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4451), 1, + ACTIONS(4470), 1, anon_sym_LPAREN2, STATE(391), 1, sym_parenthesized_expression, - [59559] = 3, + [59563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4467), 1, + ACTIONS(4486), 1, sym_identifier, - ACTIONS(4469), 1, + ACTIONS(4488), 1, anon_sym_LPAREN2, - [59569] = 3, - ACTIONS(3211), 1, + [59573] = 3, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4471), 1, + ACTIONS(4490), 1, aux_sym_preproc_include_token2, - ACTIONS(4473), 1, + ACTIONS(4492), 1, sym_preproc_arg, - [59579] = 2, + [59583] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3965), 2, + ACTIONS(3968), 2, anon_sym_COMMA, anon_sym_SEMI, - [59587] = 2, + [59591] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4194), 2, + ACTIONS(4213), 2, anon_sym_COMMA, anon_sym_RPAREN, - [59595] = 2, + [59599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4475), 2, + ACTIONS(4494), 2, anon_sym_COMMA, anon_sym_RPAREN, - [59603] = 2, + [59607] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4332), 2, + ACTIONS(4351), 2, anon_sym_COMMA, anon_sym_RPAREN, - [59611] = 3, + [59615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4449), 1, + ACTIONS(4468), 1, anon_sym_LPAREN2, STATE(1998), 1, sym_parenthesized_expression, - [59621] = 3, + [59625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4449), 1, + ACTIONS(4468), 1, anon_sym_LPAREN2, STATE(1701), 1, sym_parenthesized_expression, - [59631] = 3, - ACTIONS(3211), 1, + [59635] = 3, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4477), 1, + ACTIONS(4496), 1, aux_sym_preproc_include_token2, - ACTIONS(4479), 1, + ACTIONS(4498), 1, sym_preproc_arg, - [59641] = 3, + [59645] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(371), 1, anon_sym_LBRACE, STATE(246), 1, sym_compound_statement, - [59651] = 3, + [59655] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, STATE(281), 1, sym_compound_statement, - [59661] = 3, + [59665] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(371), 1, anon_sym_LBRACE, STATE(223), 1, sym_compound_statement, - [59671] = 3, - ACTIONS(3211), 1, + [59675] = 3, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4481), 1, + ACTIONS(4500), 1, aux_sym_preproc_include_token2, - ACTIONS(4483), 1, + ACTIONS(4502), 1, sym_preproc_arg, - [59681] = 3, + [59685] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, STATE(1545), 1, sym_compound_statement, - [59691] = 2, + [59695] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4485), 2, + ACTIONS(4504), 2, anon_sym_COMMA, anon_sym_RPAREN, - [59699] = 2, + [59703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4487), 2, + ACTIONS(4506), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [59707] = 3, + [59711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4489), 1, + ACTIONS(4508), 1, anon_sym_COMMA, - ACTIONS(4491), 1, + ACTIONS(4510), 1, anon_sym_RBRACE, - [59717] = 3, - ACTIONS(3211), 1, + [59721] = 3, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4493), 1, + ACTIONS(4512), 1, aux_sym_preproc_include_token2, - ACTIONS(4495), 1, + ACTIONS(4514), 1, sym_preproc_arg, - [59727] = 2, + [59731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4497), 2, + ACTIONS(4516), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [59735] = 3, + [59739] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(129), 1, anon_sym_LBRACE, STATE(101), 1, sym_compound_statement, - [59745] = 3, - ACTIONS(3211), 1, + [59749] = 3, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4499), 1, + ACTIONS(4518), 1, aux_sym_preproc_include_token2, - ACTIONS(4501), 1, + ACTIONS(4520), 1, sym_preproc_arg, - [59755] = 3, + [59759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4453), 1, + ACTIONS(4472), 1, sym_identifier, STATE(1758), 1, sym_attribute, - [59765] = 3, + [59769] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(423), 1, anon_sym_LBRACE, STATE(238), 1, sym_compound_statement, - [59775] = 3, + [59779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4453), 1, + ACTIONS(4472), 1, sym_identifier, STATE(1617), 1, sym_attribute, - [59785] = 3, + [59789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4451), 1, + ACTIONS(4470), 1, anon_sym_LPAREN2, STATE(311), 1, sym_parenthesized_expression, - [59795] = 3, + [59799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4451), 1, + ACTIONS(4470), 1, anon_sym_LPAREN2, STATE(312), 1, sym_parenthesized_expression, - [59805] = 3, + [59809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4503), 1, + ACTIONS(4522), 1, sym_identifier, - ACTIONS(4505), 1, + ACTIONS(4524), 1, anon_sym_LPAREN2, - [59815] = 3, + [59819] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, STATE(1541), 1, sym_compound_statement, - [59825] = 3, + [59829] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(423), 1, anon_sym_LBRACE, STATE(170), 1, sym_compound_statement, - [59835] = 3, + [59839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3520), 1, + ACTIONS(3539), 1, anon_sym_RBRACE, - ACTIONS(4489), 1, + ACTIONS(4508), 1, anon_sym_COMMA, - [59845] = 3, + [59849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4451), 1, + ACTIONS(4470), 1, anon_sym_LPAREN2, STATE(351), 1, sym_parenthesized_expression, - [59855] = 3, + [59859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4451), 1, + ACTIONS(4470), 1, anon_sym_LPAREN2, STATE(352), 1, sym_parenthesized_expression, - [59865] = 3, + [59869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4449), 1, + ACTIONS(4468), 1, anon_sym_LPAREN2, STATE(1721), 1, sym_parenthesized_expression, - [59875] = 3, - ACTIONS(3211), 1, + [59879] = 3, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4507), 1, + ACTIONS(4526), 1, aux_sym_preproc_include_token2, - ACTIONS(4509), 1, + ACTIONS(4528), 1, sym_preproc_arg, - [59885] = 3, + [59889] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(423), 1, anon_sym_LBRACE, STATE(208), 1, sym_compound_statement, - [59895] = 3, + [59899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4449), 1, + ACTIONS(4468), 1, anon_sym_LPAREN2, STATE(1847), 1, sym_parenthesized_expression, - [59905] = 3, - ACTIONS(3211), 1, + [59909] = 3, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4511), 1, + ACTIONS(4530), 1, aux_sym_preproc_include_token2, - ACTIONS(4513), 1, + ACTIONS(4532), 1, sym_preproc_arg, - [59915] = 3, - ACTIONS(3211), 1, + [59919] = 3, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4515), 1, + ACTIONS(4534), 1, aux_sym_preproc_include_token2, - ACTIONS(4517), 1, + ACTIONS(4536), 1, sym_preproc_arg, - [59925] = 2, + [59929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3066), 2, + ACTIONS(3093), 2, anon_sym_COMMA, anon_sym_RBRACE, - [59933] = 2, + [59937] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4519), 2, + ACTIONS(4538), 2, anon_sym_DOT_DOT_DOT, sym_identifier, - [59941] = 3, + [59945] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, STATE(171), 1, sym_compound_statement, - [59951] = 2, + [59955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3088), 2, + ACTIONS(3083), 2, anon_sym_COMMA, anon_sym_RBRACE, - [59959] = 3, + [59963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4521), 1, + ACTIONS(4540), 1, sym_identifier, - ACTIONS(4523), 1, + ACTIONS(4542), 1, anon_sym_RPAREN, - [59969] = 2, + [59973] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3104), 2, + ACTIONS(3109), 2, anon_sym_COMMA, anon_sym_RBRACE, - [59977] = 3, + [59981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4451), 1, + ACTIONS(4470), 1, anon_sym_LPAREN2, STATE(396), 1, sym_parenthesized_expression, - [59987] = 3, - ACTIONS(3211), 1, + [59991] = 3, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4525), 1, + ACTIONS(4544), 1, aux_sym_preproc_include_token2, - ACTIONS(4527), 1, + ACTIONS(4546), 1, sym_preproc_arg, - [59997] = 3, + [60001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4449), 1, + ACTIONS(4468), 1, anon_sym_LPAREN2, STATE(1696), 1, sym_parenthesized_expression, - [60007] = 3, - ACTIONS(3211), 1, + [60011] = 3, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4529), 1, + ACTIONS(4548), 1, aux_sym_preproc_include_token2, - ACTIONS(4531), 1, + ACTIONS(4550), 1, sym_preproc_arg, - [60017] = 2, + [60021] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4240), 2, + ACTIONS(4259), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [60025] = 3, + [60029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4449), 1, + ACTIONS(4468), 1, anon_sym_LPAREN2, STATE(1923), 1, sym_parenthesized_expression, - [60035] = 3, + [60039] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(129), 1, anon_sym_LBRACE, STATE(88), 1, sym_compound_statement, - [60045] = 3, - ACTIONS(3211), 1, + [60049] = 3, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4533), 1, + ACTIONS(4552), 1, aux_sym_preproc_include_token2, - ACTIONS(4535), 1, + ACTIONS(4554), 1, sym_preproc_arg, - [60055] = 3, - ACTIONS(3211), 1, + [60059] = 3, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4537), 1, + ACTIONS(4556), 1, aux_sym_preproc_include_token2, - ACTIONS(4539), 1, + ACTIONS(4558), 1, sym_preproc_arg, - [60065] = 3, - ACTIONS(3211), 1, + [60069] = 3, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4541), 1, + ACTIONS(4560), 1, aux_sym_preproc_include_token2, - ACTIONS(4543), 1, + ACTIONS(4562), 1, sym_preproc_arg, - [60075] = 3, + [60079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4449), 1, + ACTIONS(4468), 1, anon_sym_LPAREN2, STATE(1744), 1, sym_parenthesized_expression, - [60085] = 3, + [60089] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, STATE(1507), 1, sym_compound_statement, - [60095] = 2, + [60099] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4545), 2, + ACTIONS(4564), 2, anon_sym_COMMA, anon_sym_SEMI, - [60103] = 3, + [60107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4453), 1, + ACTIONS(4472), 1, sym_identifier, STATE(1651), 1, sym_attribute, - [60113] = 3, + [60117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4449), 1, + ACTIONS(4468), 1, anon_sym_LPAREN2, STATE(1781), 1, sym_parenthesized_expression, - [60123] = 3, - ACTIONS(3211), 1, + [60127] = 3, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4547), 1, + ACTIONS(4566), 1, aux_sym_preproc_include_token2, - ACTIONS(4549), 1, + ACTIONS(4568), 1, sym_preproc_arg, - [60133] = 3, + [60137] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(129), 1, anon_sym_LBRACE, STATE(76), 1, sym_compound_statement, - [60143] = 3, + [60147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4449), 1, + ACTIONS(4468), 1, anon_sym_LPAREN2, STATE(1760), 1, sym_parenthesized_expression, - [60153] = 3, + [60157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4449), 1, + ACTIONS(4468), 1, anon_sym_LPAREN2, STATE(1732), 1, sym_parenthesized_expression, - [60163] = 2, + [60167] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4551), 2, + ACTIONS(4570), 2, anon_sym_COMMA, anon_sym_RPAREN, - [60171] = 3, + [60175] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(371), 1, anon_sym_LBRACE, STATE(171), 1, sym_compound_statement, - [60181] = 2, + [60185] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 1, + ACTIONS(4573), 1, anon_sym_SEMI, - [60188] = 2, + [60192] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4556), 1, + ACTIONS(4575), 1, aux_sym_preproc_if_token2, - [60195] = 2, + [60199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4558), 1, + ACTIONS(4577), 1, anon_sym_RBRACE, - [60202] = 2, + [60206] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4560), 1, + ACTIONS(4579), 1, anon_sym_LPAREN2, - [60209] = 2, + [60213] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4562), 1, + ACTIONS(4581), 1, aux_sym_preproc_if_token2, - [60216] = 2, + [60220] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4564), 1, + ACTIONS(4583), 1, aux_sym_preproc_if_token2, - [60223] = 2, + [60227] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4566), 1, + ACTIONS(4585), 1, anon_sym_SEMI, - [60230] = 2, + [60234] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4568), 1, + ACTIONS(4587), 1, anon_sym_RPAREN, - [60237] = 2, - ACTIONS(3211), 1, + [60241] = 2, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4570), 1, + ACTIONS(4589), 1, aux_sym_preproc_include_token2, - [60244] = 2, + [60248] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4572), 1, + ACTIONS(4591), 1, aux_sym_preproc_if_token2, - [60251] = 2, + [60255] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4574), 1, + ACTIONS(4593), 1, aux_sym_preproc_if_token2, - [60258] = 2, + [60262] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3100), 1, + ACTIONS(3113), 1, anon_sym_SEMI, - [60265] = 2, + [60269] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4576), 1, + ACTIONS(4595), 1, aux_sym_preproc_if_token2, - [60272] = 2, + [60276] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4578), 1, + ACTIONS(4597), 1, anon_sym_RPAREN, - [60279] = 2, + [60283] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4580), 1, + ACTIONS(4599), 1, aux_sym_preproc_if_token2, - [60286] = 2, + [60290] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 1, + ACTIONS(3085), 1, anon_sym_RPAREN, - [60293] = 2, + [60297] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, + ACTIONS(4601), 1, aux_sym_preproc_if_token2, - [60300] = 2, + [60304] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4584), 1, + ACTIONS(4603), 1, sym_identifier, - [60307] = 2, + [60311] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, + ACTIONS(4605), 1, anon_sym_COLON, - [60314] = 2, + [60318] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4588), 1, + ACTIONS(4607), 1, aux_sym_preproc_if_token2, - [60321] = 2, - ACTIONS(3211), 1, + [60325] = 2, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4590), 1, + ACTIONS(4609), 1, aux_sym_preproc_include_token2, - [60328] = 2, - ACTIONS(3211), 1, + [60332] = 2, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4592), 1, + ACTIONS(4611), 1, aux_sym_preproc_include_token2, - [60335] = 2, + [60339] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3054), 1, + ACTIONS(3071), 1, anon_sym_RPAREN, - [60342] = 2, + [60346] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4594), 1, + ACTIONS(4613), 1, aux_sym_preproc_if_token2, - [60349] = 2, + [60353] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4596), 1, + ACTIONS(4615), 1, anon_sym_SEMI, - [60356] = 2, - ACTIONS(3211), 1, + [60360] = 2, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4598), 1, + ACTIONS(4617), 1, aux_sym_preproc_include_token2, - [60363] = 2, + [60367] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3040), 1, + ACTIONS(3057), 1, anon_sym_SEMI, - [60370] = 2, + [60374] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4600), 1, + ACTIONS(4619), 1, anon_sym_RPAREN, - [60377] = 2, + [60381] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4602), 1, + ACTIONS(4621), 1, anon_sym_STAR, - [60384] = 2, + [60388] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3036), 1, + ACTIONS(3023), 1, anon_sym_RPAREN, - [60391] = 2, + [60395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3076), 1, + ACTIONS(3089), 1, anon_sym_SEMI, - [60398] = 2, + [60402] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4604), 1, + ACTIONS(4623), 1, anon_sym_SEMI, - [60405] = 2, - ACTIONS(3211), 1, + [60409] = 2, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4606), 1, + ACTIONS(4625), 1, aux_sym_preproc_include_token2, - [60412] = 2, + [60416] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3004), 1, + ACTIONS(3019), 1, anon_sym_SEMI, - [60419] = 2, + [60423] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4608), 1, + ACTIONS(4627), 1, anon_sym_RPAREN, - [60426] = 2, - ACTIONS(3211), 1, + [60430] = 2, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4610), 1, + ACTIONS(4629), 1, aux_sym_preproc_include_token2, - [60433] = 2, + [60437] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4612), 1, + ACTIONS(4631), 1, anon_sym_LPAREN2, - [60440] = 2, - ACTIONS(3211), 1, + [60444] = 2, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4287), 1, + ACTIONS(4306), 1, aux_sym_preproc_include_token2, - [60447] = 2, + [60451] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4614), 1, + ACTIONS(4633), 1, anon_sym_LPAREN2, - [60454] = 2, + [60458] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4616), 1, + ACTIONS(4635), 1, anon_sym_RPAREN, - [60461] = 2, + [60465] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4618), 1, + ACTIONS(4637), 1, anon_sym_COLON, - [60468] = 2, - ACTIONS(3211), 1, + [60472] = 2, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4620), 1, + ACTIONS(4639), 1, aux_sym_preproc_include_token2, - [60475] = 2, + [60479] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4622), 1, - anon_sym_STAR, - [60482] = 2, + ACTIONS(4641), 1, + anon_sym_RBRACK, + [60486] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4624), 1, + ACTIONS(4643), 1, sym_identifier, - [60489] = 2, - ACTIONS(3211), 1, + [60493] = 2, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4626), 1, + ACTIONS(4645), 1, aux_sym_preproc_include_token2, - [60496] = 2, + [60500] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4628), 1, + ACTIONS(4647), 1, anon_sym_SEMI, - [60503] = 2, + [60507] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4630), 1, - anon_sym_RBRACK, - [60510] = 2, + ACTIONS(4649), 1, + aux_sym_preproc_if_token2, + [60514] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4632), 1, + ACTIONS(4651), 1, anon_sym_SEMI, - [60517] = 2, + [60521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4634), 1, + ACTIONS(4653), 1, anon_sym_LPAREN2, - [60524] = 2, + [60528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4636), 1, + ACTIONS(4655), 1, anon_sym_COLON, - [60531] = 2, - ACTIONS(3211), 1, + [60535] = 2, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4638), 1, + ACTIONS(4657), 1, aux_sym_preproc_include_token2, - [60538] = 2, + [60542] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4640), 1, + ACTIONS(4659), 1, anon_sym_LPAREN2, - [60545] = 2, + [60549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3070), 1, + ACTIONS(3077), 1, anon_sym_RPAREN, - [60552] = 2, + [60556] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4642), 1, + ACTIONS(4661), 1, aux_sym_preproc_if_token2, - [60559] = 2, + [60563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4644), 1, + ACTIONS(4663), 1, aux_sym_preproc_if_token2, - [60566] = 2, + [60570] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4646), 1, + ACTIONS(4665), 1, aux_sym_preproc_if_token2, - [60573] = 2, + [60577] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4648), 1, + ACTIONS(4667), 1, aux_sym_preproc_if_token2, - [60580] = 2, - ACTIONS(3211), 1, + [60584] = 2, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4650), 1, + ACTIONS(4669), 1, aux_sym_preproc_include_token2, - [60587] = 2, - ACTIONS(3211), 1, + [60591] = 2, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4652), 1, + ACTIONS(4671), 1, aux_sym_preproc_include_token2, - [60594] = 2, + [60598] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4654), 1, + ACTIONS(4673), 1, anon_sym_SEMI, - [60601] = 2, - ACTIONS(3211), 1, + [60605] = 2, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4656), 1, + ACTIONS(4675), 1, aux_sym_preproc_include_token2, - [60608] = 2, + [60612] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4658), 1, + ACTIONS(4677), 1, ts_builtin_sym_end, - [60615] = 2, + [60619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4660), 1, + ACTIONS(4679), 1, sym_identifier, - [60622] = 2, + [60626] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4662), 1, + ACTIONS(4681), 1, sym_identifier, - [60629] = 2, + [60633] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4664), 1, + ACTIONS(4683), 1, anon_sym_COLON, - [60636] = 2, + [60640] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4666), 1, + ACTIONS(4685), 1, aux_sym_preproc_if_token2, - [60643] = 2, + [60647] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4668), 1, + ACTIONS(4687), 1, aux_sym_preproc_if_token2, - [60650] = 2, + [60654] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4670), 1, + ACTIONS(4689), 1, anon_sym_COLON, - [60657] = 2, + [60661] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4672), 1, + ACTIONS(4691), 1, aux_sym_preproc_if_token2, - [60664] = 2, + [60668] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3072), 1, + ACTIONS(3081), 1, anon_sym_RPAREN, - [60671] = 2, + [60675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4674), 1, + ACTIONS(4693), 1, anon_sym_SEMI, - [60678] = 2, + [60682] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, + ACTIONS(4695), 1, sym_identifier, - [60685] = 2, + [60689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4678), 1, + ACTIONS(4697), 1, anon_sym_SEMI, - [60692] = 2, + [60696] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4680), 1, + ACTIONS(4699), 1, anon_sym_SEMI, - [60699] = 2, + [60703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4682), 1, + ACTIONS(4701), 1, anon_sym_LPAREN2, - [60706] = 2, + [60710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4684), 1, + ACTIONS(4703), 1, anon_sym_SEMI, - [60713] = 2, + [60717] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4686), 1, + ACTIONS(4705), 1, anon_sym_SEMI, - [60720] = 2, + [60724] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4688), 1, + ACTIONS(4707), 1, sym_identifier, - [60727] = 2, + [60731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4690), 1, + ACTIONS(4709), 1, anon_sym_RPAREN, - [60734] = 2, + [60738] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4692), 1, + ACTIONS(4711), 1, aux_sym_preproc_if_token2, - [60741] = 2, + [60745] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4694), 1, + ACTIONS(4713), 1, anon_sym_SEMI, - [60748] = 2, + [60752] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4696), 1, + ACTIONS(4715), 1, aux_sym_preproc_if_token2, - [60755] = 2, - ACTIONS(3211), 1, + [60759] = 2, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4698), 1, + ACTIONS(4717), 1, aux_sym_preproc_include_token2, - [60762] = 2, + [60766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4700), 1, + ACTIONS(4719), 1, anon_sym_RPAREN, - [60769] = 2, + [60773] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4702), 1, + ACTIONS(4721), 1, anon_sym_RBRACE, - [60776] = 2, + [60780] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, + ACTIONS(3067), 1, anon_sym_COLON, - [60783] = 2, + [60787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3098), 1, + ACTIONS(3101), 1, anon_sym_SEMI, - [60790] = 2, - ACTIONS(2950), 1, + [60794] = 2, + ACTIONS(2985), 1, aux_sym_preproc_include_token2, - ACTIONS(3211), 1, + ACTIONS(3230), 1, sym_comment, - [60797] = 2, + [60801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3068), 1, + ACTIONS(3073), 1, anon_sym_SEMI, - [60804] = 2, + [60808] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4704), 1, + ACTIONS(4723), 1, aux_sym_preproc_if_token2, - [60811] = 2, + [60815] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4706), 1, + ACTIONS(4725), 1, aux_sym_preproc_if_token2, - [60818] = 2, + [60822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4708), 1, + ACTIONS(4727), 1, aux_sym_preproc_if_token2, - [60825] = 2, + [60829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4710), 1, + ACTIONS(4729), 1, sym_identifier, - [60832] = 2, + [60836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4712), 1, + ACTIONS(4731), 1, anon_sym_COLON, - [60839] = 2, + [60843] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4714), 1, + ACTIONS(4733), 1, aux_sym_preproc_if_token2, - [60846] = 2, + [60850] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4716), 1, + ACTIONS(4735), 1, sym_identifier, - [60853] = 2, + [60857] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4718), 1, + ACTIONS(4737), 1, anon_sym_LPAREN2, - [60860] = 2, + [60864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4720), 1, + ACTIONS(4739), 1, aux_sym_preproc_if_token2, - [60867] = 2, + [60871] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4722), 1, + ACTIONS(4741), 1, aux_sym_preproc_if_token2, - [60874] = 2, + [60878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, + ACTIONS(4743), 1, sym_identifier, - [60881] = 2, - ACTIONS(3211), 1, + [60885] = 2, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4379), 1, + ACTIONS(4398), 1, aux_sym_preproc_include_token2, - [60888] = 2, - ACTIONS(3211), 1, + [60892] = 2, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4726), 1, + ACTIONS(4745), 1, aux_sym_preproc_include_token2, - [60895] = 2, + [60899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4728), 1, + ACTIONS(4747), 1, sym_identifier, - [60902] = 2, - ACTIONS(2960), 1, + [60906] = 2, + ACTIONS(2981), 1, aux_sym_preproc_include_token2, - ACTIONS(3211), 1, + ACTIONS(3230), 1, sym_comment, - [60909] = 2, + [60913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4730), 1, + ACTIONS(4749), 1, sym_identifier, - [60916] = 2, + [60920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4732), 1, + ACTIONS(4751), 1, anon_sym_RPAREN, - [60923] = 2, + [60927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4734), 1, + ACTIONS(4753), 1, anon_sym_RPAREN, - [60930] = 2, + [60934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4736), 1, + ACTIONS(4755), 1, anon_sym_RPAREN, - [60937] = 2, + [60941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3102), 1, + ACTIONS(3111), 1, anon_sym_RPAREN, - [60944] = 2, + [60948] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4757), 1, sym_identifier, - [60951] = 2, + [60955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4740), 1, + ACTIONS(4759), 1, anon_sym_RPAREN, - [60958] = 2, + [60962] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4742), 1, + ACTIONS(4761), 1, anon_sym_RPAREN, - [60965] = 2, + [60969] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4744), 1, + ACTIONS(4763), 1, anon_sym_RPAREN, - [60972] = 2, + [60976] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4746), 1, + ACTIONS(4765), 1, anon_sym_RPAREN, - [60979] = 2, + [60983] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4489), 1, + ACTIONS(4508), 1, anon_sym_COMMA, - [60986] = 2, + [60990] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(4767), 1, sym_identifier, - [60993] = 2, - ACTIONS(3211), 1, + [60997] = 2, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4750), 1, + ACTIONS(4769), 1, aux_sym_preproc_include_token2, - [61000] = 2, + [61004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3086), 1, + ACTIONS(3103), 1, anon_sym_COLON, - [61007] = 2, + [61011] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4752), 1, + ACTIONS(4771), 1, anon_sym_RPAREN, - [61014] = 2, + [61018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4754), 1, + ACTIONS(4773), 1, anon_sym_while, - [61021] = 2, + [61025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4756), 1, + ACTIONS(4775), 1, sym_identifier, - [61028] = 2, + [61032] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4758), 1, + ACTIONS(4777), 1, anon_sym_SEMI, - [61035] = 2, - ACTIONS(3211), 1, + [61039] = 2, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4760), 1, + ACTIONS(4779), 1, aux_sym_preproc_include_token2, - [61042] = 2, + [61046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3096), 1, + ACTIONS(3119), 1, anon_sym_SEMI, - [61049] = 2, + [61053] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4762), 1, + ACTIONS(4781), 1, aux_sym_preproc_if_token2, - [61056] = 2, + [61060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4764), 1, + ACTIONS(4783), 1, aux_sym_preproc_if_token2, - [61063] = 2, + [61067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4766), 1, + ACTIONS(4785), 1, sym_identifier, - [61070] = 2, + [61074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4768), 1, + ACTIONS(4787), 1, sym_identifier, - [61077] = 2, + [61081] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4770), 1, + ACTIONS(4789), 1, aux_sym_preproc_if_token2, - [61084] = 2, + [61088] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4772), 1, + ACTIONS(4791), 1, anon_sym_SEMI, - [61091] = 2, + [61095] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4491), 1, + ACTIONS(4510), 1, anon_sym_RBRACE, - [61098] = 2, + [61102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3078), 1, + ACTIONS(3087), 1, anon_sym_RPAREN, - [61105] = 2, + [61109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4774), 1, + ACTIONS(4793), 1, aux_sym_preproc_if_token2, - [61112] = 2, - ACTIONS(3211), 1, + [61116] = 2, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4307), 1, + ACTIONS(4326), 1, aux_sym_preproc_include_token2, - [61119] = 2, + [61123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4776), 1, + ACTIONS(4795), 1, anon_sym_SEMI, - [61126] = 2, - ACTIONS(2102), 1, + [61130] = 2, + ACTIONS(2118), 1, aux_sym_preproc_include_token2, - ACTIONS(3211), 1, + ACTIONS(3230), 1, sym_comment, - [61133] = 2, + [61137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3046), 1, + ACTIONS(3095), 1, anon_sym_SEMI, - [61140] = 2, + [61144] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4778), 1, + ACTIONS(4797), 1, aux_sym_preproc_if_token2, - [61147] = 2, + [61151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4780), 1, + ACTIONS(4799), 1, anon_sym_STAR, - [61154] = 2, + [61158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3090), 1, + ACTIONS(3107), 1, anon_sym_COLON, - [61161] = 2, + [61165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4782), 1, + ACTIONS(4801), 1, anon_sym_RPAREN, - [61168] = 2, + [61172] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4784), 1, + ACTIONS(4803), 1, sym_identifier, - [61175] = 2, + [61179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 1, + ACTIONS(4805), 1, sym_identifier, - [61182] = 2, + [61186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4788), 1, + ACTIONS(4807), 1, sym_identifier, - [61189] = 2, + [61193] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4790), 1, + ACTIONS(4809), 1, aux_sym_preproc_if_token2, - [61196] = 2, + [61200] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3082), 1, + ACTIONS(3079), 1, anon_sym_SEMI, - [61203] = 2, + [61207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4792), 1, + ACTIONS(4811), 1, anon_sym_SEMI, - [61210] = 2, + [61214] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3106), 1, + ACTIONS(3121), 1, anon_sym_SEMI, - [61217] = 2, + [61221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4794), 1, + ACTIONS(4813), 1, anon_sym_SEMI, - [61224] = 2, + [61228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4796), 1, + ACTIONS(4815), 1, anon_sym_SEMI, - [61231] = 2, + [61235] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4798), 1, + ACTIONS(4817), 1, anon_sym_RPAREN, - [61238] = 2, + [61242] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4800), 1, + ACTIONS(4819), 1, sym_identifier, - [61245] = 2, - ACTIONS(3211), 1, + [61249] = 2, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4802), 1, + ACTIONS(4821), 1, aux_sym_preproc_include_token2, - [61252] = 2, + [61256] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3520), 1, + ACTIONS(3539), 1, anon_sym_RBRACE, - [61259] = 2, + [61263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, - aux_sym_preproc_if_token2, - [61266] = 2, + ACTIONS(4823), 1, + anon_sym_STAR, + [61270] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(4825), 1, sym_identifier, - [61273] = 2, - ACTIONS(3211), 1, + [61277] = 2, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4281), 1, + ACTIONS(4300), 1, aux_sym_preproc_include_token2, - [61280] = 2, + [61284] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4808), 1, + ACTIONS(4827), 1, aux_sym_preproc_if_token2, - [61287] = 2, + [61291] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4810), 1, + ACTIONS(4829), 1, anon_sym_RBRACE, - [61294] = 2, + [61298] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4812), 1, + ACTIONS(4831), 1, anon_sym_SEMI, - [61301] = 2, + [61305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4814), 1, + ACTIONS(4833), 1, anon_sym_SEMI, - [61308] = 2, + [61312] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4816), 1, + ACTIONS(4835), 1, sym_primitive_type, - [61315] = 2, + [61319] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4818), 1, + ACTIONS(4837), 1, anon_sym_COLON, - [61322] = 2, + [61326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4820), 1, + ACTIONS(4839), 1, sym_identifier, - [61329] = 2, + [61333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(4841), 1, aux_sym_preproc_if_token2, - [61336] = 2, + [61340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4824), 1, + ACTIONS(4843), 1, anon_sym_RPAREN, - [61343] = 2, + [61347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4826), 1, + ACTIONS(4845), 1, sym_identifier, - [61350] = 2, - ACTIONS(3211), 1, + [61354] = 2, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(4847), 1, aux_sym_preproc_include_token2, - [61357] = 2, + [61361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4830), 1, + ACTIONS(4849), 1, anon_sym_RBRACE, - [61364] = 2, + [61368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4832), 1, + ACTIONS(4851), 1, aux_sym_preproc_if_token2, - [61371] = 2, + [61375] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(3099), 1, anon_sym_RPAREN, - [61378] = 2, + [61382] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4834), 1, + ACTIONS(4853), 1, anon_sym_RPAREN, - [61385] = 2, + [61389] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4836), 1, + ACTIONS(4855), 1, aux_sym_preproc_if_token2, - [61392] = 2, + [61396] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(4857), 1, sym_identifier, - [61399] = 2, + [61403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4840), 1, + ACTIONS(4859), 1, sym_identifier, - [61406] = 2, + [61410] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4842), 1, + ACTIONS(4861), 1, anon_sym_LPAREN2, - [61413] = 2, + [61417] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4844), 1, + ACTIONS(4863), 1, anon_sym_RPAREN, - [61420] = 2, - ACTIONS(3211), 1, + [61424] = 2, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4846), 1, + ACTIONS(4865), 1, aux_sym_preproc_include_token2, - [61427] = 2, + [61431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, + ACTIONS(4867), 1, aux_sym_preproc_if_token2, - [61434] = 2, + [61438] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4850), 1, + ACTIONS(4869), 1, sym_identifier, - [61441] = 2, + [61445] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3042), 1, + ACTIONS(3061), 1, anon_sym_SEMI, - [61448] = 2, + [61452] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4852), 1, + ACTIONS(4871), 1, anon_sym_RPAREN, - [61455] = 2, + [61459] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4854), 1, + ACTIONS(4873), 1, anon_sym_RPAREN, - [61462] = 2, + [61466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4856), 1, + ACTIONS(4875), 1, anon_sym_RBRACE, - [61469] = 2, + [61473] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4858), 1, + ACTIONS(4877), 1, aux_sym_preproc_if_token2, - [61476] = 2, + [61480] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4860), 1, + ACTIONS(4879), 1, anon_sym_COMMA, - [61483] = 2, + [61487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4862), 1, + ACTIONS(4881), 1, sym_identifier, - [61490] = 2, + [61494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4864), 1, + ACTIONS(4883), 1, aux_sym_preproc_if_token2, - [61497] = 2, + [61501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3767), 1, + ACTIONS(3855), 1, anon_sym_COMMA, - [61504] = 2, + [61508] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4866), 1, + ACTIONS(4885), 1, anon_sym_RBRACE, - [61511] = 2, + [61515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(4887), 1, sym_identifier, - [61518] = 2, + [61522] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4870), 1, + ACTIONS(4889), 1, aux_sym_preproc_if_token2, - [61525] = 2, + [61529] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4872), 1, + ACTIONS(4891), 1, sym_primitive_type, - [61532] = 2, + [61536] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4874), 1, + ACTIONS(4893), 1, anon_sym_RPAREN, - [61539] = 2, + [61543] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4876), 1, + ACTIONS(4895), 1, sym_identifier, - [61546] = 2, + [61550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4878), 1, + ACTIONS(4897), 1, sym_identifier, - [61553] = 2, + [61557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4880), 1, + ACTIONS(4899), 1, anon_sym_LPAREN2, - [61560] = 2, + [61564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4882), 1, + ACTIONS(4901), 1, anon_sym_RPAREN, - [61567] = 2, + [61571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4884), 1, + ACTIONS(4903), 1, sym_identifier, - [61574] = 2, + [61578] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4886), 1, + ACTIONS(4905), 1, sym_identifier, - [61581] = 2, - ACTIONS(2106), 1, + [61585] = 2, + ACTIONS(2114), 1, aux_sym_preproc_include_token2, - ACTIONS(3211), 1, + ACTIONS(3230), 1, sym_comment, - [61588] = 2, + [61592] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2998), 1, + ACTIONS(3017), 1, anon_sym_RBRACE, - [61595] = 2, + [61599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4888), 1, + ACTIONS(4907), 1, anon_sym_RPAREN, - [61602] = 2, + [61606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4890), 1, + ACTIONS(4909), 1, aux_sym_preproc_if_token2, - [61609] = 2, + [61613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4892), 1, + ACTIONS(4911), 1, anon_sym_STAR, - [61616] = 2, + [61620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4894), 1, + ACTIONS(4913), 1, anon_sym_LPAREN2, - [61623] = 2, + [61627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4896), 1, + ACTIONS(4915), 1, aux_sym_preproc_if_token2, - [61630] = 2, + [61634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4898), 1, + ACTIONS(4917), 1, aux_sym_preproc_if_token2, - [61637] = 2, + [61641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4900), 1, + ACTIONS(4919), 1, aux_sym_preproc_if_token2, - [61644] = 2, + [61648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4902), 1, + ACTIONS(4921), 1, aux_sym_preproc_if_token2, - [61651] = 2, + [61655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4904), 1, + ACTIONS(4923), 1, anon_sym_RPAREN, - [61658] = 2, + [61662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4906), 1, + ACTIONS(4925), 1, anon_sym_SEMI, - [61665] = 2, + [61669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(4927), 1, aux_sym_preproc_if_token2, - [61672] = 2, + [61676] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, + ACTIONS(4929), 1, aux_sym_preproc_if_token2, - [61679] = 2, + [61683] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4912), 1, + ACTIONS(4931), 1, anon_sym_while, - [61686] = 2, + [61690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4914), 1, + ACTIONS(4933), 1, anon_sym_LPAREN2, - [61693] = 2, + [61697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4916), 1, + ACTIONS(4935), 1, sym_identifier, - [61700] = 2, + [61704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4918), 1, + ACTIONS(4937), 1, aux_sym_preproc_if_token2, - [61707] = 2, + [61711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4920), 1, + ACTIONS(4939), 1, aux_sym_preproc_if_token2, - [61714] = 2, + [61718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4922), 1, + ACTIONS(4941), 1, sym_identifier, - [61721] = 2, + [61725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4924), 1, + ACTIONS(4943), 1, sym_identifier, - [61728] = 2, + [61732] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3075), 1, anon_sym_COLON, - [61735] = 2, + [61739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3048), 1, + ACTIONS(3063), 1, anon_sym_COLON, - [61742] = 2, + [61746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4926), 1, + ACTIONS(4945), 1, anon_sym_SEMI, - [61749] = 2, + [61753] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4928), 1, + ACTIONS(4947), 1, anon_sym_LPAREN2, - [61756] = 2, + [61760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4930), 1, + ACTIONS(4949), 1, anon_sym_SEMI, - [61763] = 2, + [61767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4932), 1, + ACTIONS(4951), 1, anon_sym_SEMI, - [61770] = 2, + [61774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 1, + ACTIONS(4953), 1, anon_sym_while, - [61777] = 2, + [61781] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3038), 1, + ACTIONS(3059), 1, anon_sym_SEMI, - [61784] = 2, - ACTIONS(2978), 1, + [61788] = 2, + ACTIONS(2993), 1, aux_sym_preproc_include_token2, - ACTIONS(3211), 1, + ACTIONS(3230), 1, sym_comment, - [61791] = 2, - ACTIONS(2964), 1, + [61795] = 2, + ACTIONS(2989), 1, aux_sym_preproc_include_token2, - ACTIONS(3211), 1, + ACTIONS(3230), 1, sym_comment, - [61798] = 2, + [61802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(4955), 1, anon_sym_RBRACK, - [61805] = 2, + [61809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4938), 1, + ACTIONS(4957), 1, anon_sym_SEMI, - [61812] = 2, + [61816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 1, + ACTIONS(4959), 1, aux_sym_preproc_if_token2, - [61819] = 2, - ACTIONS(3211), 1, + [61823] = 2, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4942), 1, + ACTIONS(4961), 1, aux_sym_preproc_include_token2, - [61826] = 2, + [61830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, + ACTIONS(4963), 1, anon_sym_while, - [61833] = 2, + [61837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4946), 1, + ACTIONS(4965), 1, aux_sym_preproc_if_token2, - [61840] = 2, + [61844] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4948), 1, + ACTIONS(4967), 1, anon_sym_RPAREN, - [61847] = 2, - ACTIONS(3211), 1, + [61851] = 2, + ACTIONS(3230), 1, sym_comment, - ACTIONS(4950), 1, + ACTIONS(4969), 1, aux_sym_preproc_include_token2, - [61854] = 2, + [61858] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4952), 1, + ACTIONS(4971), 1, sym_identifier, - [61861] = 2, + [61865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4954), 1, + ACTIONS(4973), 1, anon_sym_LPAREN2, - [61868] = 2, + [61872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3034), 1, + ACTIONS(3091), 1, anon_sym_COLON, - [61875] = 2, + [61879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4956), 1, + ACTIONS(4975), 1, anon_sym_RPAREN, - [61882] = 2, + [61886] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4958), 1, + ACTIONS(4977), 1, anon_sym_LPAREN2, - [61889] = 2, + [61893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4960), 1, + ACTIONS(4979), 1, aux_sym_preproc_if_token2, - [61896] = 2, + [61900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4962), 1, + ACTIONS(4981), 1, sym_identifier, }; @@ -112983,20 +113003,20 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(499)] = 342, [SMALL_STATE(500)] = 451, [SMALL_STATE(501)] = 560, - [SMALL_STATE(502)] = 667, - [SMALL_STATE(503)] = 776, - [SMALL_STATE(504)] = 885, - [SMALL_STATE(505)] = 994, - [SMALL_STATE(506)] = 1103, - [SMALL_STATE(507)] = 1212, + [SMALL_STATE(502)] = 669, + [SMALL_STATE(503)] = 778, + [SMALL_STATE(504)] = 887, + [SMALL_STATE(505)] = 996, + [SMALL_STATE(506)] = 1105, + [SMALL_STATE(507)] = 1214, [SMALL_STATE(508)] = 1321, [SMALL_STATE(509)] = 1428, - [SMALL_STATE(510)] = 1535, - [SMALL_STATE(511)] = 1644, - [SMALL_STATE(512)] = 1753, - [SMALL_STATE(513)] = 1862, - [SMALL_STATE(514)] = 1971, - [SMALL_STATE(515)] = 2080, + [SMALL_STATE(510)] = 1537, + [SMALL_STATE(511)] = 1646, + [SMALL_STATE(512)] = 1755, + [SMALL_STATE(513)] = 1864, + [SMALL_STATE(514)] = 1973, + [SMALL_STATE(515)] = 2082, [SMALL_STATE(516)] = 2189, [SMALL_STATE(517)] = 2298, [SMALL_STATE(518)] = 2407, @@ -113010,19 +113030,19 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(526)] = 3279, [SMALL_STATE(527)] = 3388, [SMALL_STATE(528)] = 3496, - [SMALL_STATE(529)] = 3604, + [SMALL_STATE(529)] = 3600, [SMALL_STATE(530)] = 3708, [SMALL_STATE(531)] = 3812, - [SMALL_STATE(532)] = 3916, - [SMALL_STATE(533)] = 4022, + [SMALL_STATE(532)] = 3920, + [SMALL_STATE(533)] = 4026, [SMALL_STATE(534)] = 4130, - [SMALL_STATE(535)] = 4238, + [SMALL_STATE(535)] = 4234, [SMALL_STATE(536)] = 4342, - [SMALL_STATE(537)] = 4446, - [SMALL_STATE(538)] = 4550, - [SMALL_STATE(539)] = 4654, - [SMALL_STATE(540)] = 4762, - [SMALL_STATE(541)] = 4866, + [SMALL_STATE(537)] = 4450, + [SMALL_STATE(538)] = 4554, + [SMALL_STATE(539)] = 4658, + [SMALL_STATE(540)] = 4764, + [SMALL_STATE(541)] = 4868, [SMALL_STATE(542)] = 4972, [SMALL_STATE(543)] = 5076, [SMALL_STATE(544)] = 5184, @@ -113067,38 +113087,38 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(583)] = 9189, [SMALL_STATE(584)] = 9292, [SMALL_STATE(585)] = 9395, - [SMALL_STATE(586)] = 9498, - [SMALL_STATE(587)] = 9601, - [SMALL_STATE(588)] = 9702, - [SMALL_STATE(589)] = 9805, - [SMALL_STATE(590)] = 9908, - [SMALL_STATE(591)] = 10009, - [SMALL_STATE(592)] = 10110, - [SMALL_STATE(593)] = 10211, - [SMALL_STATE(594)] = 10312, - [SMALL_STATE(595)] = 10413, - [SMALL_STATE(596)] = 10514, - [SMALL_STATE(597)] = 10617, - [SMALL_STATE(598)] = 10718, + [SMALL_STATE(586)] = 9496, + [SMALL_STATE(587)] = 9597, + [SMALL_STATE(588)] = 9700, + [SMALL_STATE(589)] = 9801, + [SMALL_STATE(590)] = 9904, + [SMALL_STATE(591)] = 10007, + [SMALL_STATE(592)] = 10108, + [SMALL_STATE(593)] = 10209, + [SMALL_STATE(594)] = 10310, + [SMALL_STATE(595)] = 10411, + [SMALL_STATE(596)] = 10512, + [SMALL_STATE(597)] = 10613, + [SMALL_STATE(598)] = 10716, [SMALL_STATE(599)] = 10819, [SMALL_STATE(600)] = 10922, [SMALL_STATE(601)] = 11025, [SMALL_STATE(602)] = 11128, - [SMALL_STATE(603)] = 11229, - [SMALL_STATE(604)] = 11330, + [SMALL_STATE(603)] = 11231, + [SMALL_STATE(604)] = 11332, [SMALL_STATE(605)] = 11433, - [SMALL_STATE(606)] = 11534, - [SMALL_STATE(607)] = 11635, - [SMALL_STATE(608)] = 11736, - [SMALL_STATE(609)] = 11837, - [SMALL_STATE(610)] = 11938, - [SMALL_STATE(611)] = 12039, - [SMALL_STATE(612)] = 12140, - [SMALL_STATE(613)] = 12241, - [SMALL_STATE(614)] = 12342, - [SMALL_STATE(615)] = 12443, - [SMALL_STATE(616)] = 12544, - [SMALL_STATE(617)] = 12645, + [SMALL_STATE(606)] = 11536, + [SMALL_STATE(607)] = 11637, + [SMALL_STATE(608)] = 11738, + [SMALL_STATE(609)] = 11839, + [SMALL_STATE(610)] = 11940, + [SMALL_STATE(611)] = 12041, + [SMALL_STATE(612)] = 12142, + [SMALL_STATE(613)] = 12243, + [SMALL_STATE(614)] = 12344, + [SMALL_STATE(615)] = 12445, + [SMALL_STATE(616)] = 12546, + [SMALL_STATE(617)] = 12647, [SMALL_STATE(618)] = 12748, [SMALL_STATE(619)] = 12851, [SMALL_STATE(620)] = 12952, @@ -113109,7 +113129,7 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(625)] = 13465, [SMALL_STATE(626)] = 13568, [SMALL_STATE(627)] = 13671, - [SMALL_STATE(628)] = 13772, + [SMALL_STATE(628)] = 13774, [SMALL_STATE(629)] = 13875, [SMALL_STATE(630)] = 13978, [SMALL_STATE(631)] = 14081, @@ -113124,7 +113144,7 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(640)] = 15008, [SMALL_STATE(641)] = 15111, [SMALL_STATE(642)] = 15212, - [SMALL_STATE(643)] = 15315, + [SMALL_STATE(643)] = 15313, [SMALL_STATE(644)] = 15416, [SMALL_STATE(645)] = 15517, [SMALL_STATE(646)] = 15618, @@ -113137,8 +113157,8 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(653)] = 16327, [SMALL_STATE(654)] = 16428, [SMALL_STATE(655)] = 16529, - [SMALL_STATE(656)] = 16632, - [SMALL_STATE(657)] = 16735, + [SMALL_STATE(656)] = 16630, + [SMALL_STATE(657)] = 16733, [SMALL_STATE(658)] = 16836, [SMALL_STATE(659)] = 16937, [SMALL_STATE(660)] = 17040, @@ -113146,10 +113166,10 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(662)] = 17231, [SMALL_STATE(663)] = 17302, [SMALL_STATE(664)] = 17403, - [SMALL_STATE(665)] = 17504, + [SMALL_STATE(665)] = 17474, [SMALL_STATE(666)] = 17575, - [SMALL_STATE(667)] = 17646, - [SMALL_STATE(668)] = 17747, + [SMALL_STATE(667)] = 17676, + [SMALL_STATE(668)] = 17777, [SMALL_STATE(669)] = 17848, [SMALL_STATE(670)] = 17916, [SMALL_STATE(671)] = 17979, @@ -113164,233 +113184,233 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(680)] = 18538, [SMALL_STATE(681)] = 18600, [SMALL_STATE(682)] = 18662, - [SMALL_STATE(683)] = 18733, - [SMALL_STATE(684)] = 18798, - [SMALL_STATE(685)] = 18857, - [SMALL_STATE(686)] = 18916, - [SMALL_STATE(687)] = 18975, + [SMALL_STATE(683)] = 18721, + [SMALL_STATE(684)] = 18780, + [SMALL_STATE(685)] = 18839, + [SMALL_STATE(686)] = 18910, + [SMALL_STATE(687)] = 18969, [SMALL_STATE(688)] = 19034, [SMALL_STATE(689)] = 19126, - [SMALL_STATE(690)] = 19218, - [SMALL_STATE(691)] = 19310, - [SMALL_STATE(692)] = 19402, - [SMALL_STATE(693)] = 19460, - [SMALL_STATE(694)] = 19552, - [SMALL_STATE(695)] = 19644, - [SMALL_STATE(696)] = 19736, - [SMALL_STATE(697)] = 19794, - [SMALL_STATE(698)] = 19852, - [SMALL_STATE(699)] = 19944, - [SMALL_STATE(700)] = 20036, - [SMALL_STATE(701)] = 20094, - [SMALL_STATE(702)] = 20186, - [SMALL_STATE(703)] = 20244, - [SMALL_STATE(704)] = 20336, - [SMALL_STATE(705)] = 20394, - [SMALL_STATE(706)] = 20452, - [SMALL_STATE(707)] = 20546, - [SMALL_STATE(708)] = 20638, - [SMALL_STATE(709)] = 20730, - [SMALL_STATE(710)] = 20822, - [SMALL_STATE(711)] = 20914, - [SMALL_STATE(712)] = 20972, - [SMALL_STATE(713)] = 21064, - [SMALL_STATE(714)] = 21156, - [SMALL_STATE(715)] = 21214, - [SMALL_STATE(716)] = 21272, - [SMALL_STATE(717)] = 21330, - [SMALL_STATE(718)] = 21388, - [SMALL_STATE(719)] = 21446, - [SMALL_STATE(720)] = 21504, - [SMALL_STATE(721)] = 21562, + [SMALL_STATE(690)] = 19184, + [SMALL_STATE(691)] = 19242, + [SMALL_STATE(692)] = 19300, + [SMALL_STATE(693)] = 19392, + [SMALL_STATE(694)] = 19484, + [SMALL_STATE(695)] = 19576, + [SMALL_STATE(696)] = 19668, + [SMALL_STATE(697)] = 19726, + [SMALL_STATE(698)] = 19784, + [SMALL_STATE(699)] = 19878, + [SMALL_STATE(700)] = 19970, + [SMALL_STATE(701)] = 20062, + [SMALL_STATE(702)] = 20120, + [SMALL_STATE(703)] = 20178, + [SMALL_STATE(704)] = 20270, + [SMALL_STATE(705)] = 20328, + [SMALL_STATE(706)] = 20420, + [SMALL_STATE(707)] = 20478, + [SMALL_STATE(708)] = 20536, + [SMALL_STATE(709)] = 20594, + [SMALL_STATE(710)] = 20686, + [SMALL_STATE(711)] = 20778, + [SMALL_STATE(712)] = 20870, + [SMALL_STATE(713)] = 20928, + [SMALL_STATE(714)] = 20986, + [SMALL_STATE(715)] = 21044, + [SMALL_STATE(716)] = 21102, + [SMALL_STATE(717)] = 21194, + [SMALL_STATE(718)] = 21286, + [SMALL_STATE(719)] = 21344, + [SMALL_STATE(720)] = 21436, + [SMALL_STATE(721)] = 21528, [SMALL_STATE(722)] = 21620, - [SMALL_STATE(723)] = 21687, - [SMALL_STATE(724)] = 21754, - [SMALL_STATE(725)] = 21811, - [SMALL_STATE(726)] = 21900, - [SMALL_STATE(727)] = 21957, - [SMALL_STATE(728)] = 22024, - [SMALL_STATE(729)] = 22089, - [SMALL_STATE(730)] = 22146, - [SMALL_STATE(731)] = 22237, - [SMALL_STATE(732)] = 22294, - [SMALL_STATE(733)] = 22351, - [SMALL_STATE(734)] = 22418, - [SMALL_STATE(735)] = 22507, - [SMALL_STATE(736)] = 22568, - [SMALL_STATE(737)] = 22635, + [SMALL_STATE(723)] = 21685, + [SMALL_STATE(724)] = 21742, + [SMALL_STATE(725)] = 21807, + [SMALL_STATE(726)] = 21874, + [SMALL_STATE(727)] = 21931, + [SMALL_STATE(728)] = 21988, + [SMALL_STATE(729)] = 22055, + [SMALL_STATE(730)] = 22112, + [SMALL_STATE(731)] = 22169, + [SMALL_STATE(732)] = 22260, + [SMALL_STATE(733)] = 22327, + [SMALL_STATE(734)] = 22394, + [SMALL_STATE(735)] = 22483, + [SMALL_STATE(736)] = 22572, + [SMALL_STATE(737)] = 22633, [SMALL_STATE(738)] = 22700, [SMALL_STATE(739)] = 22764, - [SMALL_STATE(740)] = 22823, - [SMALL_STATE(741)] = 22905, - [SMALL_STATE(742)] = 22987, - [SMALL_STATE(743)] = 23069, - [SMALL_STATE(744)] = 23151, - [SMALL_STATE(745)] = 23233, - [SMALL_STATE(746)] = 23315, - [SMALL_STATE(747)] = 23397, - [SMALL_STATE(748)] = 23479, - [SMALL_STATE(749)] = 23542, - [SMALL_STATE(750)] = 23621, - [SMALL_STATE(751)] = 23674, - [SMALL_STATE(752)] = 23735, - [SMALL_STATE(753)] = 23796, - [SMALL_STATE(754)] = 23859, - [SMALL_STATE(755)] = 23912, - [SMALL_STATE(756)] = 23965, - [SMALL_STATE(757)] = 24026, - [SMALL_STATE(758)] = 24087, - [SMALL_STATE(759)] = 24150, - [SMALL_STATE(760)] = 24213, - [SMALL_STATE(761)] = 24276, - [SMALL_STATE(762)] = 24339, - [SMALL_STATE(763)] = 24400, - [SMALL_STATE(764)] = 24464, - [SMALL_STATE(765)] = 24524, - [SMALL_STATE(766)] = 24596, - [SMALL_STATE(767)] = 24670, - [SMALL_STATE(768)] = 24746, - [SMALL_STATE(769)] = 24824, - [SMALL_STATE(770)] = 24904, - [SMALL_STATE(771)] = 24986, - [SMALL_STATE(772)] = 25054, - [SMALL_STATE(773)] = 25120, - [SMALL_STATE(774)] = 25172, - [SMALL_STATE(775)] = 25258, - [SMALL_STATE(776)] = 25310, - [SMALL_STATE(777)] = 25362, - [SMALL_STATE(778)] = 25448, - [SMALL_STATE(779)] = 25534, - [SMALL_STATE(780)] = 25589, - [SMALL_STATE(781)] = 25664, - [SMALL_STATE(782)] = 25727, - [SMALL_STATE(783)] = 25782, - [SMALL_STATE(784)] = 25837, - [SMALL_STATE(785)] = 25892, - [SMALL_STATE(786)] = 25947, - [SMALL_STATE(787)] = 26002, - [SMALL_STATE(788)] = 26065, - [SMALL_STATE(789)] = 26120, - [SMALL_STATE(790)] = 26183, - [SMALL_STATE(791)] = 26264, - [SMALL_STATE(792)] = 26327, - [SMALL_STATE(793)] = 26406, - [SMALL_STATE(794)] = 26491, - [SMALL_STATE(795)] = 26546, - [SMALL_STATE(796)] = 26609, - [SMALL_STATE(797)] = 26686, - [SMALL_STATE(798)] = 26771, - [SMALL_STATE(799)] = 26844, - [SMALL_STATE(800)] = 26899, - [SMALL_STATE(801)] = 26984, - [SMALL_STATE(802)] = 27049, - [SMALL_STATE(803)] = 27104, - [SMALL_STATE(804)] = 27171, - [SMALL_STATE(805)] = 27226, - [SMALL_STATE(806)] = 27297, - [SMALL_STATE(807)] = 27352, - [SMALL_STATE(808)] = 27402, - [SMALL_STATE(809)] = 27452, - [SMALL_STATE(810)] = 27502, - [SMALL_STATE(811)] = 27552, - [SMALL_STATE(812)] = 27606, - [SMALL_STATE(813)] = 27660, + [SMALL_STATE(740)] = 22826, + [SMALL_STATE(741)] = 22908, + [SMALL_STATE(742)] = 22990, + [SMALL_STATE(743)] = 23072, + [SMALL_STATE(744)] = 23154, + [SMALL_STATE(745)] = 23236, + [SMALL_STATE(746)] = 23318, + [SMALL_STATE(747)] = 23372, + [SMALL_STATE(748)] = 23454, + [SMALL_STATE(749)] = 23536, + [SMALL_STATE(750)] = 23597, + [SMALL_STATE(751)] = 23676, + [SMALL_STATE(752)] = 23739, + [SMALL_STATE(753)] = 23802, + [SMALL_STATE(754)] = 23865, + [SMALL_STATE(755)] = 23928, + [SMALL_STATE(756)] = 23989, + [SMALL_STATE(757)] = 24050, + [SMALL_STATE(758)] = 24113, + [SMALL_STATE(759)] = 24174, + [SMALL_STATE(760)] = 24227, + [SMALL_STATE(761)] = 24280, + [SMALL_STATE(762)] = 24343, + [SMALL_STATE(763)] = 24404, + [SMALL_STATE(764)] = 24486, + [SMALL_STATE(765)] = 24538, + [SMALL_STATE(766)] = 24624, + [SMALL_STATE(767)] = 24676, + [SMALL_STATE(768)] = 24762, + [SMALL_STATE(769)] = 24828, + [SMALL_STATE(770)] = 24896, + [SMALL_STATE(771)] = 24968, + [SMALL_STATE(772)] = 25042, + [SMALL_STATE(773)] = 25094, + [SMALL_STATE(774)] = 25170, + [SMALL_STATE(775)] = 25230, + [SMALL_STATE(776)] = 25308, + [SMALL_STATE(777)] = 25388, + [SMALL_STATE(778)] = 25452, + [SMALL_STATE(779)] = 25538, + [SMALL_STATE(780)] = 25613, + [SMALL_STATE(781)] = 25668, + [SMALL_STATE(782)] = 25723, + [SMALL_STATE(783)] = 25778, + [SMALL_STATE(784)] = 25833, + [SMALL_STATE(785)] = 25888, + [SMALL_STATE(786)] = 25951, + [SMALL_STATE(787)] = 26016, + [SMALL_STATE(788)] = 26079, + [SMALL_STATE(789)] = 26160, + [SMALL_STATE(790)] = 26239, + [SMALL_STATE(791)] = 26316, + [SMALL_STATE(792)] = 26379, + [SMALL_STATE(793)] = 26434, + [SMALL_STATE(794)] = 26497, + [SMALL_STATE(795)] = 26570, + [SMALL_STATE(796)] = 26625, + [SMALL_STATE(797)] = 26710, + [SMALL_STATE(798)] = 26777, + [SMALL_STATE(799)] = 26862, + [SMALL_STATE(800)] = 26925, + [SMALL_STATE(801)] = 26996, + [SMALL_STATE(802)] = 27051, + [SMALL_STATE(803)] = 27136, + [SMALL_STATE(804)] = 27191, + [SMALL_STATE(805)] = 27246, + [SMALL_STATE(806)] = 27301, + [SMALL_STATE(807)] = 27356, + [SMALL_STATE(808)] = 27406, + [SMALL_STATE(809)] = 27456, + [SMALL_STATE(810)] = 27506, + [SMALL_STATE(811)] = 27560, + [SMALL_STATE(812)] = 27614, + [SMALL_STATE(813)] = 27664, [SMALL_STATE(814)] = 27714, - [SMALL_STATE(815)] = 27764, - [SMALL_STATE(816)] = 27814, - [SMALL_STATE(817)] = 27868, - [SMALL_STATE(818)] = 27918, - [SMALL_STATE(819)] = 27972, - [SMALL_STATE(820)] = 28022, - [SMALL_STATE(821)] = 28072, - [SMALL_STATE(822)] = 28122, - [SMALL_STATE(823)] = 28172, - [SMALL_STATE(824)] = 28222, - [SMALL_STATE(825)] = 28272, - [SMALL_STATE(826)] = 28322, - [SMALL_STATE(827)] = 28372, - [SMALL_STATE(828)] = 28422, - [SMALL_STATE(829)] = 28472, - [SMALL_STATE(830)] = 28522, - [SMALL_STATE(831)] = 28572, - [SMALL_STATE(832)] = 28626, - [SMALL_STATE(833)] = 28676, - [SMALL_STATE(834)] = 28726, - [SMALL_STATE(835)] = 28780, - [SMALL_STATE(836)] = 28836, - [SMALL_STATE(837)] = 28886, - [SMALL_STATE(838)] = 28936, - [SMALL_STATE(839)] = 28986, - [SMALL_STATE(840)] = 29036, + [SMALL_STATE(815)] = 27768, + [SMALL_STATE(816)] = 27822, + [SMALL_STATE(817)] = 27872, + [SMALL_STATE(818)] = 27926, + [SMALL_STATE(819)] = 27976, + [SMALL_STATE(820)] = 28026, + [SMALL_STATE(821)] = 28076, + [SMALL_STATE(822)] = 28126, + [SMALL_STATE(823)] = 28176, + [SMALL_STATE(824)] = 28226, + [SMALL_STATE(825)] = 28276, + [SMALL_STATE(826)] = 28326, + [SMALL_STATE(827)] = 28376, + [SMALL_STATE(828)] = 28426, + [SMALL_STATE(829)] = 28476, + [SMALL_STATE(830)] = 28526, + [SMALL_STATE(831)] = 28576, + [SMALL_STATE(832)] = 28630, + [SMALL_STATE(833)] = 28680, + [SMALL_STATE(834)] = 28734, + [SMALL_STATE(835)] = 28784, + [SMALL_STATE(836)] = 28840, + [SMALL_STATE(837)] = 28890, + [SMALL_STATE(838)] = 28940, + [SMALL_STATE(839)] = 28990, + [SMALL_STATE(840)] = 29040, [SMALL_STATE(841)] = 29090, - [SMALL_STATE(842)] = 29146, + [SMALL_STATE(842)] = 29140, [SMALL_STATE(843)] = 29196, [SMALL_STATE(844)] = 29254, - [SMALL_STATE(845)] = 29304, - [SMALL_STATE(846)] = 29353, - [SMALL_STATE(847)] = 29402, - [SMALL_STATE(848)] = 29451, - [SMALL_STATE(849)] = 29500, - [SMALL_STATE(850)] = 29549, - [SMALL_STATE(851)] = 29598, - [SMALL_STATE(852)] = 29647, - [SMALL_STATE(853)] = 29696, - [SMALL_STATE(854)] = 29745, - [SMALL_STATE(855)] = 29794, - [SMALL_STATE(856)] = 29843, - [SMALL_STATE(857)] = 29892, - [SMALL_STATE(858)] = 29941, - [SMALL_STATE(859)] = 29990, - [SMALL_STATE(860)] = 30039, - [SMALL_STATE(861)] = 30088, - [SMALL_STATE(862)] = 30137, - [SMALL_STATE(863)] = 30186, - [SMALL_STATE(864)] = 30248, - [SMALL_STATE(865)] = 30306, - [SMALL_STATE(866)] = 30368, - [SMALL_STATE(867)] = 30430, - [SMALL_STATE(868)] = 30492, - [SMALL_STATE(869)] = 30551, - [SMALL_STATE(870)] = 30610, - [SMALL_STATE(871)] = 30673, - [SMALL_STATE(872)] = 30738, - [SMALL_STATE(873)] = 30817, - [SMALL_STATE(874)] = 30886, - [SMALL_STATE(875)] = 30957, - [SMALL_STATE(876)] = 31030, - [SMALL_STATE(877)] = 31105, - [SMALL_STATE(878)] = 31182, - [SMALL_STATE(879)] = 31261, - [SMALL_STATE(880)] = 31322, - [SMALL_STATE(881)] = 31405, + [SMALL_STATE(845)] = 29308, + [SMALL_STATE(846)] = 29357, + [SMALL_STATE(847)] = 29406, + [SMALL_STATE(848)] = 29455, + [SMALL_STATE(849)] = 29504, + [SMALL_STATE(850)] = 29553, + [SMALL_STATE(851)] = 29602, + [SMALL_STATE(852)] = 29651, + [SMALL_STATE(853)] = 29700, + [SMALL_STATE(854)] = 29749, + [SMALL_STATE(855)] = 29798, + [SMALL_STATE(856)] = 29847, + [SMALL_STATE(857)] = 29896, + [SMALL_STATE(858)] = 29945, + [SMALL_STATE(859)] = 29994, + [SMALL_STATE(860)] = 30043, + [SMALL_STATE(861)] = 30092, + [SMALL_STATE(862)] = 30141, + [SMALL_STATE(863)] = 30190, + [SMALL_STATE(864)] = 30252, + [SMALL_STATE(865)] = 30314, + [SMALL_STATE(866)] = 30376, + [SMALL_STATE(867)] = 30434, + [SMALL_STATE(868)] = 30496, + [SMALL_STATE(869)] = 30555, + [SMALL_STATE(870)] = 30616, + [SMALL_STATE(871)] = 30695, + [SMALL_STATE(872)] = 30778, + [SMALL_STATE(873)] = 30857, + [SMALL_STATE(874)] = 30920, + [SMALL_STATE(875)] = 30985, + [SMALL_STATE(876)] = 31054, + [SMALL_STATE(877)] = 31125, + [SMALL_STATE(878)] = 31198, + [SMALL_STATE(879)] = 31273, + [SMALL_STATE(880)] = 31350, + [SMALL_STATE(881)] = 31429, [SMALL_STATE(882)] = 31488, [SMALL_STATE(883)] = 31571, - [SMALL_STATE(884)] = 31626, - [SMALL_STATE(885)] = 31705, - [SMALL_STATE(886)] = 31764, - [SMALL_STATE(887)] = 31823, - [SMALL_STATE(888)] = 31882, - [SMALL_STATE(889)] = 31935, - [SMALL_STATE(890)] = 31988, - [SMALL_STATE(891)] = 32045, - [SMALL_STATE(892)] = 32091, - [SMALL_STATE(893)] = 32137, - [SMALL_STATE(894)] = 32183, - [SMALL_STATE(895)] = 32229, - [SMALL_STATE(896)] = 32279, - [SMALL_STATE(897)] = 32325, - [SMALL_STATE(898)] = 32371, - [SMALL_STATE(899)] = 32416, - [SMALL_STATE(900)] = 32461, - [SMALL_STATE(901)] = 32506, - [SMALL_STATE(902)] = 32551, + [SMALL_STATE(884)] = 31630, + [SMALL_STATE(885)] = 31713, + [SMALL_STATE(886)] = 31768, + [SMALL_STATE(887)] = 31827, + [SMALL_STATE(888)] = 31886, + [SMALL_STATE(889)] = 31943, + [SMALL_STATE(890)] = 31996, + [SMALL_STATE(891)] = 32049, + [SMALL_STATE(892)] = 32095, + [SMALL_STATE(893)] = 32141, + [SMALL_STATE(894)] = 32187, + [SMALL_STATE(895)] = 32237, + [SMALL_STATE(896)] = 32283, + [SMALL_STATE(897)] = 32329, + [SMALL_STATE(898)] = 32375, + [SMALL_STATE(899)] = 32420, + [SMALL_STATE(900)] = 32465, + [SMALL_STATE(901)] = 32510, + [SMALL_STATE(902)] = 32555, [SMALL_STATE(903)] = 32600, [SMALL_STATE(904)] = 32645, [SMALL_STATE(905)] = 32690, [SMALL_STATE(906)] = 32735, - [SMALL_STATE(907)] = 32780, - [SMALL_STATE(908)] = 32825, - [SMALL_STATE(909)] = 32870, + [SMALL_STATE(907)] = 32784, + [SMALL_STATE(908)] = 32829, + [SMALL_STATE(909)] = 32874, [SMALL_STATE(910)] = 32919, [SMALL_STATE(911)] = 32964, [SMALL_STATE(912)] = 33009, @@ -113401,538 +113421,538 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(917)] = 33234, [SMALL_STATE(918)] = 33279, [SMALL_STATE(919)] = 33324, - [SMALL_STATE(920)] = 33369, - [SMALL_STATE(921)] = 33414, - [SMALL_STATE(922)] = 33459, + [SMALL_STATE(920)] = 33373, + [SMALL_STATE(921)] = 33418, + [SMALL_STATE(922)] = 33463, [SMALL_STATE(923)] = 33508, [SMALL_STATE(924)] = 33553, - [SMALL_STATE(925)] = 33598, - [SMALL_STATE(926)] = 33643, - [SMALL_STATE(927)] = 33688, - [SMALL_STATE(928)] = 33733, - [SMALL_STATE(929)] = 33782, - [SMALL_STATE(930)] = 33831, - [SMALL_STATE(931)] = 33880, - [SMALL_STATE(932)] = 33925, - [SMALL_STATE(933)] = 33974, - [SMALL_STATE(934)] = 34019, - [SMALL_STATE(935)] = 34064, - [SMALL_STATE(936)] = 34109, - [SMALL_STATE(937)] = 34154, - [SMALL_STATE(938)] = 34199, - [SMALL_STATE(939)] = 34244, - [SMALL_STATE(940)] = 34289, - [SMALL_STATE(941)] = 34334, - [SMALL_STATE(942)] = 34378, - [SMALL_STATE(943)] = 34422, - [SMALL_STATE(944)] = 34466, - [SMALL_STATE(945)] = 34510, - [SMALL_STATE(946)] = 34554, - [SMALL_STATE(947)] = 34598, - [SMALL_STATE(948)] = 34642, - [SMALL_STATE(949)] = 34686, - [SMALL_STATE(950)] = 34730, - [SMALL_STATE(951)] = 34774, - [SMALL_STATE(952)] = 34843, - [SMALL_STATE(953)] = 34898, - [SMALL_STATE(954)] = 34967, - [SMALL_STATE(955)] = 35036, - [SMALL_STATE(956)] = 35079, - [SMALL_STATE(957)] = 35148, - [SMALL_STATE(958)] = 35200, - [SMALL_STATE(959)] = 35250, - [SMALL_STATE(960)] = 35321, - [SMALL_STATE(961)] = 35398, - [SMALL_STATE(962)] = 35453, - [SMALL_STATE(963)] = 35530, - [SMALL_STATE(964)] = 35607, - [SMALL_STATE(965)] = 35680, - [SMALL_STATE(966)] = 35757, - [SMALL_STATE(967)] = 35826, - [SMALL_STATE(968)] = 35893, - [SMALL_STATE(969)] = 35958, - [SMALL_STATE(970)] = 36021, - [SMALL_STATE(971)] = 36080, - [SMALL_STATE(972)] = 36137, - [SMALL_STATE(973)] = 36195, - [SMALL_STATE(974)] = 36259, - [SMALL_STATE(975)] = 36327, - [SMALL_STATE(976)] = 36369, - [SMALL_STATE(977)] = 36437, - [SMALL_STATE(978)] = 36507, - [SMALL_STATE(979)] = 36547, - [SMALL_STATE(980)] = 36589, - [SMALL_STATE(981)] = 36643, - [SMALL_STATE(982)] = 36685, - [SMALL_STATE(983)] = 36725, - [SMALL_STATE(984)] = 36765, - [SMALL_STATE(985)] = 36805, - [SMALL_STATE(986)] = 36871, - [SMALL_STATE(987)] = 36911, - [SMALL_STATE(988)] = 36967, - [SMALL_STATE(989)] = 37007, - [SMALL_STATE(990)] = 37047, - [SMALL_STATE(991)] = 37109, - [SMALL_STATE(992)] = 37149, - [SMALL_STATE(993)] = 37223, - [SMALL_STATE(994)] = 37263, - [SMALL_STATE(995)] = 37303, - [SMALL_STATE(996)] = 37343, - [SMALL_STATE(997)] = 37383, - [SMALL_STATE(998)] = 37423, - [SMALL_STATE(999)] = 37497, - [SMALL_STATE(1000)] = 37539, - [SMALL_STATE(1001)] = 37613, - [SMALL_STATE(1002)] = 37676, - [SMALL_STATE(1003)] = 37739, - [SMALL_STATE(1004)] = 37804, - [SMALL_STATE(1005)] = 37869, - [SMALL_STATE(1006)] = 37929, - [SMALL_STATE(1007)] = 37989, - [SMALL_STATE(1008)] = 38049, - [SMALL_STATE(1009)] = 38087, - [SMALL_STATE(1010)] = 38147, - [SMALL_STATE(1011)] = 38207, - [SMALL_STATE(1012)] = 38267, - [SMALL_STATE(1013)] = 38305, - [SMALL_STATE(1014)] = 38365, - [SMALL_STATE(1015)] = 38403, - [SMALL_STATE(1016)] = 38463, - [SMALL_STATE(1017)] = 38509, - [SMALL_STATE(1018)] = 38547, - [SMALL_STATE(1019)] = 38621, - [SMALL_STATE(1020)] = 38696, - [SMALL_STATE(1021)] = 38767, - [SMALL_STATE(1022)] = 38842, - [SMALL_STATE(1023)] = 38917, - [SMALL_STATE(1024)] = 38992, - [SMALL_STATE(1025)] = 39067, - [SMALL_STATE(1026)] = 39142, - [SMALL_STATE(1027)] = 39214, - [SMALL_STATE(1028)] = 39284, - [SMALL_STATE(1029)] = 39340, - [SMALL_STATE(1030)] = 39396, - [SMALL_STATE(1031)] = 39462, - [SMALL_STATE(1032)] = 39534, - [SMALL_STATE(1033)] = 39606, - [SMALL_STATE(1034)] = 39678, - [SMALL_STATE(1035)] = 39750, - [SMALL_STATE(1036)] = 39806, - [SMALL_STATE(1037)] = 39870, - [SMALL_STATE(1038)] = 39926, - [SMALL_STATE(1039)] = 39982, - [SMALL_STATE(1040)] = 40054, - [SMALL_STATE(1041)] = 40120, - [SMALL_STATE(1042)] = 40192, - [SMALL_STATE(1043)] = 40264, - [SMALL_STATE(1044)] = 40320, - [SMALL_STATE(1045)] = 40390, - [SMALL_STATE(1046)] = 40452, - [SMALL_STATE(1047)] = 40524, - [SMALL_STATE(1048)] = 40596, - [SMALL_STATE(1049)] = 40656, - [SMALL_STATE(1050)] = 40726, - [SMALL_STATE(1051)] = 40798, - [SMALL_STATE(1052)] = 40854, - [SMALL_STATE(1053)] = 40910, + [SMALL_STATE(925)] = 33602, + [SMALL_STATE(926)] = 33647, + [SMALL_STATE(927)] = 33696, + [SMALL_STATE(928)] = 33741, + [SMALL_STATE(929)] = 33790, + [SMALL_STATE(930)] = 33839, + [SMALL_STATE(931)] = 33884, + [SMALL_STATE(932)] = 33929, + [SMALL_STATE(933)] = 33978, + [SMALL_STATE(934)] = 34023, + [SMALL_STATE(935)] = 34068, + [SMALL_STATE(936)] = 34113, + [SMALL_STATE(937)] = 34158, + [SMALL_STATE(938)] = 34203, + [SMALL_STATE(939)] = 34248, + [SMALL_STATE(940)] = 34293, + [SMALL_STATE(941)] = 34338, + [SMALL_STATE(942)] = 34382, + [SMALL_STATE(943)] = 34426, + [SMALL_STATE(944)] = 34470, + [SMALL_STATE(945)] = 34514, + [SMALL_STATE(946)] = 34558, + [SMALL_STATE(947)] = 34602, + [SMALL_STATE(948)] = 34646, + [SMALL_STATE(949)] = 34690, + [SMALL_STATE(950)] = 34734, + [SMALL_STATE(951)] = 34778, + [SMALL_STATE(952)] = 34833, + [SMALL_STATE(953)] = 34902, + [SMALL_STATE(954)] = 34971, + [SMALL_STATE(955)] = 35040, + [SMALL_STATE(956)] = 35109, + [SMALL_STATE(957)] = 35152, + [SMALL_STATE(958)] = 35204, + [SMALL_STATE(959)] = 35254, + [SMALL_STATE(960)] = 35327, + [SMALL_STATE(961)] = 35404, + [SMALL_STATE(962)] = 35481, + [SMALL_STATE(963)] = 35538, + [SMALL_STATE(964)] = 35597, + [SMALL_STATE(965)] = 35660, + [SMALL_STATE(966)] = 35725, + [SMALL_STATE(967)] = 35792, + [SMALL_STATE(968)] = 35861, + [SMALL_STATE(969)] = 35932, + [SMALL_STATE(970)] = 36009, + [SMALL_STATE(971)] = 36086, + [SMALL_STATE(972)] = 36141, + [SMALL_STATE(973)] = 36211, + [SMALL_STATE(974)] = 36269, + [SMALL_STATE(975)] = 36311, + [SMALL_STATE(976)] = 36379, + [SMALL_STATE(977)] = 36419, + [SMALL_STATE(978)] = 36459, + [SMALL_STATE(979)] = 36499, + [SMALL_STATE(980)] = 36553, + [SMALL_STATE(981)] = 36595, + [SMALL_STATE(982)] = 36637, + [SMALL_STATE(983)] = 36711, + [SMALL_STATE(984)] = 36753, + [SMALL_STATE(985)] = 36827, + [SMALL_STATE(986)] = 36867, + [SMALL_STATE(987)] = 36923, + [SMALL_STATE(988)] = 36963, + [SMALL_STATE(989)] = 37003, + [SMALL_STATE(990)] = 37043, + [SMALL_STATE(991)] = 37083, + [SMALL_STATE(992)] = 37145, + [SMALL_STATE(993)] = 37209, + [SMALL_STATE(994)] = 37275, + [SMALL_STATE(995)] = 37315, + [SMALL_STATE(996)] = 37355, + [SMALL_STATE(997)] = 37395, + [SMALL_STATE(998)] = 37435, + [SMALL_STATE(999)] = 37475, + [SMALL_STATE(1000)] = 37549, + [SMALL_STATE(1001)] = 37617, + [SMALL_STATE(1002)] = 37680, + [SMALL_STATE(1003)] = 37743, + [SMALL_STATE(1004)] = 37808, + [SMALL_STATE(1005)] = 37873, + [SMALL_STATE(1006)] = 37919, + [SMALL_STATE(1007)] = 37979, + [SMALL_STATE(1008)] = 38039, + [SMALL_STATE(1009)] = 38099, + [SMALL_STATE(1010)] = 38159, + [SMALL_STATE(1011)] = 38197, + [SMALL_STATE(1012)] = 38235, + [SMALL_STATE(1013)] = 38273, + [SMALL_STATE(1014)] = 38333, + [SMALL_STATE(1015)] = 38393, + [SMALL_STATE(1016)] = 38453, + [SMALL_STATE(1017)] = 38513, + [SMALL_STATE(1018)] = 38551, + [SMALL_STATE(1019)] = 38625, + [SMALL_STATE(1020)] = 38700, + [SMALL_STATE(1021)] = 38771, + [SMALL_STATE(1022)] = 38846, + [SMALL_STATE(1023)] = 38921, + [SMALL_STATE(1024)] = 38996, + [SMALL_STATE(1025)] = 39071, + [SMALL_STATE(1026)] = 39146, + [SMALL_STATE(1027)] = 39218, + [SMALL_STATE(1028)] = 39288, + [SMALL_STATE(1029)] = 39344, + [SMALL_STATE(1030)] = 39416, + [SMALL_STATE(1031)] = 39488, + [SMALL_STATE(1032)] = 39544, + [SMALL_STATE(1033)] = 39600, + [SMALL_STATE(1034)] = 39656, + [SMALL_STATE(1035)] = 39728, + [SMALL_STATE(1036)] = 39790, + [SMALL_STATE(1037)] = 39846, + [SMALL_STATE(1038)] = 39912, + [SMALL_STATE(1039)] = 39984, + [SMALL_STATE(1040)] = 40056, + [SMALL_STATE(1041)] = 40116, + [SMALL_STATE(1042)] = 40188, + [SMALL_STATE(1043)] = 40244, + [SMALL_STATE(1044)] = 40300, + [SMALL_STATE(1045)] = 40370, + [SMALL_STATE(1046)] = 40442, + [SMALL_STATE(1047)] = 40512, + [SMALL_STATE(1048)] = 40584, + [SMALL_STATE(1049)] = 40640, + [SMALL_STATE(1050)] = 40712, + [SMALL_STATE(1051)] = 40768, + [SMALL_STATE(1052)] = 40834, + [SMALL_STATE(1053)] = 40906, [SMALL_STATE(1054)] = 40978, [SMALL_STATE(1055)] = 41050, - [SMALL_STATE(1056)] = 41120, - [SMALL_STATE(1057)] = 41192, - [SMALL_STATE(1058)] = 41264, - [SMALL_STATE(1059)] = 41336, - [SMALL_STATE(1060)] = 41408, - [SMALL_STATE(1061)] = 41464, - [SMALL_STATE(1062)] = 41516, - [SMALL_STATE(1063)] = 41572, - [SMALL_STATE(1064)] = 41626, - [SMALL_STATE(1065)] = 41698, - [SMALL_STATE(1066)] = 41770, - [SMALL_STATE(1067)] = 41842, - [SMALL_STATE(1068)] = 41914, - [SMALL_STATE(1069)] = 41986, - [SMALL_STATE(1070)] = 42058, - [SMALL_STATE(1071)] = 42128, - [SMALL_STATE(1072)] = 42184, - [SMALL_STATE(1073)] = 42240, - [SMALL_STATE(1074)] = 42296, - [SMALL_STATE(1075)] = 42366, - [SMALL_STATE(1076)] = 42438, - [SMALL_STATE(1077)] = 42508, - [SMALL_STATE(1078)] = 42564, - [SMALL_STATE(1079)] = 42636, - [SMALL_STATE(1080)] = 42710, + [SMALL_STATE(1056)] = 41122, + [SMALL_STATE(1057)] = 41176, + [SMALL_STATE(1058)] = 41232, + [SMALL_STATE(1059)] = 41304, + [SMALL_STATE(1060)] = 41374, + [SMALL_STATE(1061)] = 41442, + [SMALL_STATE(1062)] = 41498, + [SMALL_STATE(1063)] = 41550, + [SMALL_STATE(1064)] = 41622, + [SMALL_STATE(1065)] = 41694, + [SMALL_STATE(1066)] = 41766, + [SMALL_STATE(1067)] = 41838, + [SMALL_STATE(1068)] = 41910, + [SMALL_STATE(1069)] = 41980, + [SMALL_STATE(1070)] = 42052, + [SMALL_STATE(1071)] = 42122, + [SMALL_STATE(1072)] = 42194, + [SMALL_STATE(1073)] = 42250, + [SMALL_STATE(1074)] = 42322, + [SMALL_STATE(1075)] = 42386, + [SMALL_STATE(1076)] = 42458, + [SMALL_STATE(1077)] = 42528, + [SMALL_STATE(1078)] = 42584, + [SMALL_STATE(1079)] = 42656, + [SMALL_STATE(1080)] = 42712, [SMALL_STATE(1081)] = 42782, [SMALL_STATE(1082)] = 42854, [SMALL_STATE(1083)] = 42926, - [SMALL_STATE(1084)] = 42998, - [SMALL_STATE(1085)] = 43068, - [SMALL_STATE(1086)] = 43140, - [SMALL_STATE(1087)] = 43209, - [SMALL_STATE(1088)] = 43278, - [SMALL_STATE(1089)] = 43347, - [SMALL_STATE(1090)] = 43400, - [SMALL_STATE(1091)] = 43469, - [SMALL_STATE(1092)] = 43538, - [SMALL_STATE(1093)] = 43607, - [SMALL_STATE(1094)] = 43676, - [SMALL_STATE(1095)] = 43745, - [SMALL_STATE(1096)] = 43814, - [SMALL_STATE(1097)] = 43883, - [SMALL_STATE(1098)] = 43952, - [SMALL_STATE(1099)] = 44021, - [SMALL_STATE(1100)] = 44074, - [SMALL_STATE(1101)] = 44143, - [SMALL_STATE(1102)] = 44212, - [SMALL_STATE(1103)] = 44265, - [SMALL_STATE(1104)] = 44334, - [SMALL_STATE(1105)] = 44403, - [SMALL_STATE(1106)] = 44456, - [SMALL_STATE(1107)] = 44525, - [SMALL_STATE(1108)] = 44578, - [SMALL_STATE(1109)] = 44613, - [SMALL_STATE(1110)] = 44648, - [SMALL_STATE(1111)] = 44701, - [SMALL_STATE(1112)] = 44770, - [SMALL_STATE(1113)] = 44839, - [SMALL_STATE(1114)] = 44878, - [SMALL_STATE(1115)] = 44947, - [SMALL_STATE(1116)] = 44983, - [SMALL_STATE(1117)] = 45027, - [SMALL_STATE(1118)] = 45093, - [SMALL_STATE(1119)] = 45135, - [SMALL_STATE(1120)] = 45171, - [SMALL_STATE(1121)] = 45207, - [SMALL_STATE(1122)] = 45243, - [SMALL_STATE(1123)] = 45290, - [SMALL_STATE(1124)] = 45337, - [SMALL_STATE(1125)] = 45384, - [SMALL_STATE(1126)] = 45431, - [SMALL_STATE(1127)] = 45478, - [SMALL_STATE(1128)] = 45525, - [SMALL_STATE(1129)] = 45574, - [SMALL_STATE(1130)] = 45628, - [SMALL_STATE(1131)] = 45672, - [SMALL_STATE(1132)] = 45716, - [SMALL_STATE(1133)] = 45770, - [SMALL_STATE(1134)] = 45806, - [SMALL_STATE(1135)] = 45860, - [SMALL_STATE(1136)] = 45914, - [SMALL_STATE(1137)] = 45958, - [SMALL_STATE(1138)] = 46002, - [SMALL_STATE(1139)] = 46046, - [SMALL_STATE(1140)] = 46084, - [SMALL_STATE(1141)] = 46118, - [SMALL_STATE(1142)] = 46162, - [SMALL_STATE(1143)] = 46213, - [SMALL_STATE(1144)] = 46264, - [SMALL_STATE(1145)] = 46315, - [SMALL_STATE(1146)] = 46366, - [SMALL_STATE(1147)] = 46409, - [SMALL_STATE(1148)] = 46460, - [SMALL_STATE(1149)] = 46515, - [SMALL_STATE(1150)] = 46566, - [SMALL_STATE(1151)] = 46621, - [SMALL_STATE(1152)] = 46654, - [SMALL_STATE(1153)] = 46697, - [SMALL_STATE(1154)] = 46748, - [SMALL_STATE(1155)] = 46799, - [SMALL_STATE(1156)] = 46850, - [SMALL_STATE(1157)] = 46901, - [SMALL_STATE(1158)] = 46956, - [SMALL_STATE(1159)] = 47007, - [SMALL_STATE(1160)] = 47050, - [SMALL_STATE(1161)] = 47100, - [SMALL_STATE(1162)] = 47140, - [SMALL_STATE(1163)] = 47174, - [SMALL_STATE(1164)] = 47210, - [SMALL_STATE(1165)] = 47250, - [SMALL_STATE(1166)] = 47292, - [SMALL_STATE(1167)] = 47336, - [SMALL_STATE(1168)] = 47376, - [SMALL_STATE(1169)] = 47422, - [SMALL_STATE(1170)] = 47468, - [SMALL_STATE(1171)] = 47516, - [SMALL_STATE(1172)] = 47556, - [SMALL_STATE(1173)] = 47596, - [SMALL_STATE(1174)] = 47636, - [SMALL_STATE(1175)] = 47664, - [SMALL_STATE(1176)] = 47696, - [SMALL_STATE(1177)] = 47728, - [SMALL_STATE(1178)] = 47768, - [SMALL_STATE(1179)] = 47808, - [SMALL_STATE(1180)] = 47848, - [SMALL_STATE(1181)] = 47876, - [SMALL_STATE(1182)] = 47916, - [SMALL_STATE(1183)] = 47956, - [SMALL_STATE(1184)] = 47996, - [SMALL_STATE(1185)] = 48044, - [SMALL_STATE(1186)] = 48084, - [SMALL_STATE(1187)] = 48124, - [SMALL_STATE(1188)] = 48164, - [SMALL_STATE(1189)] = 48204, - [SMALL_STATE(1190)] = 48244, - [SMALL_STATE(1191)] = 48284, - [SMALL_STATE(1192)] = 48324, - [SMALL_STATE(1193)] = 48352, - [SMALL_STATE(1194)] = 48392, - [SMALL_STATE(1195)] = 48432, - [SMALL_STATE(1196)] = 48472, - [SMALL_STATE(1197)] = 48504, - [SMALL_STATE(1198)] = 48532, - [SMALL_STATE(1199)] = 48564, - [SMALL_STATE(1200)] = 48604, - [SMALL_STATE(1201)] = 48644, - [SMALL_STATE(1202)] = 48684, - [SMALL_STATE(1203)] = 48724, - [SMALL_STATE(1204)] = 48764, - [SMALL_STATE(1205)] = 48804, - [SMALL_STATE(1206)] = 48844, - [SMALL_STATE(1207)] = 48884, - [SMALL_STATE(1208)] = 48912, - [SMALL_STATE(1209)] = 48952, - [SMALL_STATE(1210)] = 48992, - [SMALL_STATE(1211)] = 49032, - [SMALL_STATE(1212)] = 49060, - [SMALL_STATE(1213)] = 49100, - [SMALL_STATE(1214)] = 49140, - [SMALL_STATE(1215)] = 49180, - [SMALL_STATE(1216)] = 49220, - [SMALL_STATE(1217)] = 49260, - [SMALL_STATE(1218)] = 49300, - [SMALL_STATE(1219)] = 49332, - [SMALL_STATE(1220)] = 49372, - [SMALL_STATE(1221)] = 49399, - [SMALL_STATE(1222)] = 49440, - [SMALL_STATE(1223)] = 49467, - [SMALL_STATE(1224)] = 49502, - [SMALL_STATE(1225)] = 49529, - [SMALL_STATE(1226)] = 49574, - [SMALL_STATE(1227)] = 49617, - [SMALL_STATE(1228)] = 49646, - [SMALL_STATE(1229)] = 49689, - [SMALL_STATE(1230)] = 49732, - [SMALL_STATE(1231)] = 49777, - [SMALL_STATE(1232)] = 49822, - [SMALL_STATE(1233)] = 49867, - [SMALL_STATE(1234)] = 49912, - [SMALL_STATE(1235)] = 49957, - [SMALL_STATE(1236)] = 49990, - [SMALL_STATE(1237)] = 50017, - [SMALL_STATE(1238)] = 50066, - [SMALL_STATE(1239)] = 50097, - [SMALL_STATE(1240)] = 50128, - [SMALL_STATE(1241)] = 50173, - [SMALL_STATE(1242)] = 50200, - [SMALL_STATE(1243)] = 50245, - [SMALL_STATE(1244)] = 50290, - [SMALL_STATE(1245)] = 50323, - [SMALL_STATE(1246)] = 50366, - [SMALL_STATE(1247)] = 50393, - [SMALL_STATE(1248)] = 50428, - [SMALL_STATE(1249)] = 50473, - [SMALL_STATE(1250)] = 50504, - [SMALL_STATE(1251)] = 50549, - [SMALL_STATE(1252)] = 50576, - [SMALL_STATE(1253)] = 50619, - [SMALL_STATE(1254)] = 50650, - [SMALL_STATE(1255)] = 50699, - [SMALL_STATE(1256)] = 50744, - [SMALL_STATE(1257)] = 50789, - [SMALL_STATE(1258)] = 50828, - [SMALL_STATE(1259)] = 50859, - [SMALL_STATE(1260)] = 50886, - [SMALL_STATE(1261)] = 50917, - [SMALL_STATE(1262)] = 50948, - [SMALL_STATE(1263)] = 50993, - [SMALL_STATE(1264)] = 51024, - [SMALL_STATE(1265)] = 51061, - [SMALL_STATE(1266)] = 51092, - [SMALL_STATE(1267)] = 51119, - [SMALL_STATE(1268)] = 51164, - [SMALL_STATE(1269)] = 51191, - [SMALL_STATE(1270)] = 51231, - [SMALL_STATE(1271)] = 51271, - [SMALL_STATE(1272)] = 51311, - [SMALL_STATE(1273)] = 51351, - [SMALL_STATE(1274)] = 51391, - [SMALL_STATE(1275)] = 51431, - [SMALL_STATE(1276)] = 51475, - [SMALL_STATE(1277)] = 51516, - [SMALL_STATE(1278)] = 51557, - [SMALL_STATE(1279)] = 51598, - [SMALL_STATE(1280)] = 51639, - [SMALL_STATE(1281)] = 51680, - [SMALL_STATE(1282)] = 51715, - [SMALL_STATE(1283)] = 51756, - [SMALL_STATE(1284)] = 51797, - [SMALL_STATE(1285)] = 51838, - [SMALL_STATE(1286)] = 51878, - [SMALL_STATE(1287)] = 51912, - [SMALL_STATE(1288)] = 51950, - [SMALL_STATE(1289)] = 51988, - [SMALL_STATE(1290)] = 52029, - [SMALL_STATE(1291)] = 52068, - [SMALL_STATE(1292)] = 52105, - [SMALL_STATE(1293)] = 52134, - [SMALL_STATE(1294)] = 52163, - [SMALL_STATE(1295)] = 52202, - [SMALL_STATE(1296)] = 52243, - [SMALL_STATE(1297)] = 52272, - [SMALL_STATE(1298)] = 52301, - [SMALL_STATE(1299)] = 52340, - [SMALL_STATE(1300)] = 52381, - [SMALL_STATE(1301)] = 52420, - [SMALL_STATE(1302)] = 52446, - [SMALL_STATE(1303)] = 52467, - [SMALL_STATE(1304)] = 52496, - [SMALL_STATE(1305)] = 52533, - [SMALL_STATE(1306)] = 52570, - [SMALL_STATE(1307)] = 52607, - [SMALL_STATE(1308)] = 52636, - [SMALL_STATE(1309)] = 52673, - [SMALL_STATE(1310)] = 52710, - [SMALL_STATE(1311)] = 52743, - [SMALL_STATE(1312)] = 52780, - [SMALL_STATE(1313)] = 52809, - [SMALL_STATE(1314)] = 52846, - [SMALL_STATE(1315)] = 52883, - [SMALL_STATE(1316)] = 52920, - [SMALL_STATE(1317)] = 52945, - [SMALL_STATE(1318)] = 52978, - [SMALL_STATE(1319)] = 52999, - [SMALL_STATE(1320)] = 53036, - [SMALL_STATE(1321)] = 53073, - [SMALL_STATE(1322)] = 53102, - [SMALL_STATE(1323)] = 53123, - [SMALL_STATE(1324)] = 53159, - [SMALL_STATE(1325)] = 53183, - [SMALL_STATE(1326)] = 53212, - [SMALL_STATE(1327)] = 53241, - [SMALL_STATE(1328)] = 53270, - [SMALL_STATE(1329)] = 53299, - [SMALL_STATE(1330)] = 53330, - [SMALL_STATE(1331)] = 53359, - [SMALL_STATE(1332)] = 53390, - [SMALL_STATE(1333)] = 53419, - [SMALL_STATE(1334)] = 53448, - [SMALL_STATE(1335)] = 53475, - [SMALL_STATE(1336)] = 53502, - [SMALL_STATE(1337)] = 53533, - [SMALL_STATE(1338)] = 53562, - [SMALL_STATE(1339)] = 53591, - [SMALL_STATE(1340)] = 53622, - [SMALL_STATE(1341)] = 53647, - [SMALL_STATE(1342)] = 53676, - [SMALL_STATE(1343)] = 53707, - [SMALL_STATE(1344)] = 53732, - [SMALL_STATE(1345)] = 53759, - [SMALL_STATE(1346)] = 53790, - [SMALL_STATE(1347)] = 53819, - [SMALL_STATE(1348)] = 53848, - [SMALL_STATE(1349)] = 53877, - [SMALL_STATE(1350)] = 53908, - [SMALL_STATE(1351)] = 53935, - [SMALL_STATE(1352)] = 53966, - [SMALL_STATE(1353)] = 53997, - [SMALL_STATE(1354)] = 54026, - [SMALL_STATE(1355)] = 54044, - [SMALL_STATE(1356)] = 54070, - [SMALL_STATE(1357)] = 54088, - [SMALL_STATE(1358)] = 54120, - [SMALL_STATE(1359)] = 54152, - [SMALL_STATE(1360)] = 54182, - [SMALL_STATE(1361)] = 54208, - [SMALL_STATE(1362)] = 54234, - [SMALL_STATE(1363)] = 54266, - [SMALL_STATE(1364)] = 54284, - [SMALL_STATE(1365)] = 54302, - [SMALL_STATE(1366)] = 54326, - [SMALL_STATE(1367)] = 54352, - [SMALL_STATE(1368)] = 54370, - [SMALL_STATE(1369)] = 54392, - [SMALL_STATE(1370)] = 54424, + [SMALL_STATE(1084)] = 43000, + [SMALL_STATE(1085)] = 43072, + [SMALL_STATE(1086)] = 43144, + [SMALL_STATE(1087)] = 43213, + [SMALL_STATE(1088)] = 43282, + [SMALL_STATE(1089)] = 43351, + [SMALL_STATE(1090)] = 43404, + [SMALL_STATE(1091)] = 43473, + [SMALL_STATE(1092)] = 43542, + [SMALL_STATE(1093)] = 43611, + [SMALL_STATE(1094)] = 43680, + [SMALL_STATE(1095)] = 43749, + [SMALL_STATE(1096)] = 43818, + [SMALL_STATE(1097)] = 43887, + [SMALL_STATE(1098)] = 43956, + [SMALL_STATE(1099)] = 44025, + [SMALL_STATE(1100)] = 44078, + [SMALL_STATE(1101)] = 44147, + [SMALL_STATE(1102)] = 44216, + [SMALL_STATE(1103)] = 44269, + [SMALL_STATE(1104)] = 44322, + [SMALL_STATE(1105)] = 44391, + [SMALL_STATE(1106)] = 44444, + [SMALL_STATE(1107)] = 44513, + [SMALL_STATE(1108)] = 44548, + [SMALL_STATE(1109)] = 44583, + [SMALL_STATE(1110)] = 44636, + [SMALL_STATE(1111)] = 44705, + [SMALL_STATE(1112)] = 44774, + [SMALL_STATE(1113)] = 44843, + [SMALL_STATE(1114)] = 44912, + [SMALL_STATE(1115)] = 44951, + [SMALL_STATE(1116)] = 44987, + [SMALL_STATE(1117)] = 45031, + [SMALL_STATE(1118)] = 45073, + [SMALL_STATE(1119)] = 45139, + [SMALL_STATE(1120)] = 45175, + [SMALL_STATE(1121)] = 45211, + [SMALL_STATE(1122)] = 45247, + [SMALL_STATE(1123)] = 45294, + [SMALL_STATE(1124)] = 45341, + [SMALL_STATE(1125)] = 45388, + [SMALL_STATE(1126)] = 45435, + [SMALL_STATE(1127)] = 45482, + [SMALL_STATE(1128)] = 45529, + [SMALL_STATE(1129)] = 45578, + [SMALL_STATE(1130)] = 45632, + [SMALL_STATE(1131)] = 45676, + [SMALL_STATE(1132)] = 45720, + [SMALL_STATE(1133)] = 45774, + [SMALL_STATE(1134)] = 45810, + [SMALL_STATE(1135)] = 45864, + [SMALL_STATE(1136)] = 45918, + [SMALL_STATE(1137)] = 45962, + [SMALL_STATE(1138)] = 46006, + [SMALL_STATE(1139)] = 46050, + [SMALL_STATE(1140)] = 46088, + [SMALL_STATE(1141)] = 46122, + [SMALL_STATE(1142)] = 46166, + [SMALL_STATE(1143)] = 46217, + [SMALL_STATE(1144)] = 46268, + [SMALL_STATE(1145)] = 46319, + [SMALL_STATE(1146)] = 46370, + [SMALL_STATE(1147)] = 46413, + [SMALL_STATE(1148)] = 46464, + [SMALL_STATE(1149)] = 46519, + [SMALL_STATE(1150)] = 46570, + [SMALL_STATE(1151)] = 46625, + [SMALL_STATE(1152)] = 46658, + [SMALL_STATE(1153)] = 46701, + [SMALL_STATE(1154)] = 46752, + [SMALL_STATE(1155)] = 46803, + [SMALL_STATE(1156)] = 46854, + [SMALL_STATE(1157)] = 46905, + [SMALL_STATE(1158)] = 46960, + [SMALL_STATE(1159)] = 47011, + [SMALL_STATE(1160)] = 47054, + [SMALL_STATE(1161)] = 47104, + [SMALL_STATE(1162)] = 47144, + [SMALL_STATE(1163)] = 47178, + [SMALL_STATE(1164)] = 47214, + [SMALL_STATE(1165)] = 47254, + [SMALL_STATE(1166)] = 47296, + [SMALL_STATE(1167)] = 47340, + [SMALL_STATE(1168)] = 47380, + [SMALL_STATE(1169)] = 47426, + [SMALL_STATE(1170)] = 47472, + [SMALL_STATE(1171)] = 47520, + [SMALL_STATE(1172)] = 47560, + [SMALL_STATE(1173)] = 47600, + [SMALL_STATE(1174)] = 47640, + [SMALL_STATE(1175)] = 47668, + [SMALL_STATE(1176)] = 47700, + [SMALL_STATE(1177)] = 47732, + [SMALL_STATE(1178)] = 47772, + [SMALL_STATE(1179)] = 47812, + [SMALL_STATE(1180)] = 47852, + [SMALL_STATE(1181)] = 47880, + [SMALL_STATE(1182)] = 47920, + [SMALL_STATE(1183)] = 47960, + [SMALL_STATE(1184)] = 48000, + [SMALL_STATE(1185)] = 48048, + [SMALL_STATE(1186)] = 48088, + [SMALL_STATE(1187)] = 48128, + [SMALL_STATE(1188)] = 48168, + [SMALL_STATE(1189)] = 48208, + [SMALL_STATE(1190)] = 48248, + [SMALL_STATE(1191)] = 48288, + [SMALL_STATE(1192)] = 48328, + [SMALL_STATE(1193)] = 48356, + [SMALL_STATE(1194)] = 48396, + [SMALL_STATE(1195)] = 48436, + [SMALL_STATE(1196)] = 48476, + [SMALL_STATE(1197)] = 48508, + [SMALL_STATE(1198)] = 48536, + [SMALL_STATE(1199)] = 48568, + [SMALL_STATE(1200)] = 48608, + [SMALL_STATE(1201)] = 48648, + [SMALL_STATE(1202)] = 48688, + [SMALL_STATE(1203)] = 48728, + [SMALL_STATE(1204)] = 48768, + [SMALL_STATE(1205)] = 48808, + [SMALL_STATE(1206)] = 48848, + [SMALL_STATE(1207)] = 48888, + [SMALL_STATE(1208)] = 48916, + [SMALL_STATE(1209)] = 48956, + [SMALL_STATE(1210)] = 48996, + [SMALL_STATE(1211)] = 49036, + [SMALL_STATE(1212)] = 49064, + [SMALL_STATE(1213)] = 49104, + [SMALL_STATE(1214)] = 49144, + [SMALL_STATE(1215)] = 49184, + [SMALL_STATE(1216)] = 49224, + [SMALL_STATE(1217)] = 49264, + [SMALL_STATE(1218)] = 49304, + [SMALL_STATE(1219)] = 49336, + [SMALL_STATE(1220)] = 49376, + [SMALL_STATE(1221)] = 49403, + [SMALL_STATE(1222)] = 49444, + [SMALL_STATE(1223)] = 49471, + [SMALL_STATE(1224)] = 49506, + [SMALL_STATE(1225)] = 49533, + [SMALL_STATE(1226)] = 49578, + [SMALL_STATE(1227)] = 49621, + [SMALL_STATE(1228)] = 49650, + [SMALL_STATE(1229)] = 49693, + [SMALL_STATE(1230)] = 49736, + [SMALL_STATE(1231)] = 49781, + [SMALL_STATE(1232)] = 49826, + [SMALL_STATE(1233)] = 49871, + [SMALL_STATE(1234)] = 49916, + [SMALL_STATE(1235)] = 49961, + [SMALL_STATE(1236)] = 49994, + [SMALL_STATE(1237)] = 50021, + [SMALL_STATE(1238)] = 50070, + [SMALL_STATE(1239)] = 50101, + [SMALL_STATE(1240)] = 50132, + [SMALL_STATE(1241)] = 50177, + [SMALL_STATE(1242)] = 50204, + [SMALL_STATE(1243)] = 50249, + [SMALL_STATE(1244)] = 50294, + [SMALL_STATE(1245)] = 50327, + [SMALL_STATE(1246)] = 50370, + [SMALL_STATE(1247)] = 50397, + [SMALL_STATE(1248)] = 50432, + [SMALL_STATE(1249)] = 50477, + [SMALL_STATE(1250)] = 50508, + [SMALL_STATE(1251)] = 50553, + [SMALL_STATE(1252)] = 50580, + [SMALL_STATE(1253)] = 50623, + [SMALL_STATE(1254)] = 50654, + [SMALL_STATE(1255)] = 50703, + [SMALL_STATE(1256)] = 50748, + [SMALL_STATE(1257)] = 50793, + [SMALL_STATE(1258)] = 50832, + [SMALL_STATE(1259)] = 50863, + [SMALL_STATE(1260)] = 50890, + [SMALL_STATE(1261)] = 50921, + [SMALL_STATE(1262)] = 50952, + [SMALL_STATE(1263)] = 50997, + [SMALL_STATE(1264)] = 51028, + [SMALL_STATE(1265)] = 51065, + [SMALL_STATE(1266)] = 51096, + [SMALL_STATE(1267)] = 51123, + [SMALL_STATE(1268)] = 51168, + [SMALL_STATE(1269)] = 51195, + [SMALL_STATE(1270)] = 51235, + [SMALL_STATE(1271)] = 51275, + [SMALL_STATE(1272)] = 51315, + [SMALL_STATE(1273)] = 51355, + [SMALL_STATE(1274)] = 51395, + [SMALL_STATE(1275)] = 51435, + [SMALL_STATE(1276)] = 51479, + [SMALL_STATE(1277)] = 51520, + [SMALL_STATE(1278)] = 51561, + [SMALL_STATE(1279)] = 51602, + [SMALL_STATE(1280)] = 51643, + [SMALL_STATE(1281)] = 51684, + [SMALL_STATE(1282)] = 51719, + [SMALL_STATE(1283)] = 51760, + [SMALL_STATE(1284)] = 51801, + [SMALL_STATE(1285)] = 51842, + [SMALL_STATE(1286)] = 51882, + [SMALL_STATE(1287)] = 51916, + [SMALL_STATE(1288)] = 51954, + [SMALL_STATE(1289)] = 51992, + [SMALL_STATE(1290)] = 52033, + [SMALL_STATE(1291)] = 52072, + [SMALL_STATE(1292)] = 52109, + [SMALL_STATE(1293)] = 52138, + [SMALL_STATE(1294)] = 52167, + [SMALL_STATE(1295)] = 52206, + [SMALL_STATE(1296)] = 52247, + [SMALL_STATE(1297)] = 52276, + [SMALL_STATE(1298)] = 52305, + [SMALL_STATE(1299)] = 52344, + [SMALL_STATE(1300)] = 52385, + [SMALL_STATE(1301)] = 52424, + [SMALL_STATE(1302)] = 52450, + [SMALL_STATE(1303)] = 52471, + [SMALL_STATE(1304)] = 52500, + [SMALL_STATE(1305)] = 52537, + [SMALL_STATE(1306)] = 52574, + [SMALL_STATE(1307)] = 52611, + [SMALL_STATE(1308)] = 52640, + [SMALL_STATE(1309)] = 52677, + [SMALL_STATE(1310)] = 52714, + [SMALL_STATE(1311)] = 52747, + [SMALL_STATE(1312)] = 52784, + [SMALL_STATE(1313)] = 52813, + [SMALL_STATE(1314)] = 52850, + [SMALL_STATE(1315)] = 52887, + [SMALL_STATE(1316)] = 52924, + [SMALL_STATE(1317)] = 52949, + [SMALL_STATE(1318)] = 52982, + [SMALL_STATE(1319)] = 53003, + [SMALL_STATE(1320)] = 53040, + [SMALL_STATE(1321)] = 53077, + [SMALL_STATE(1322)] = 53106, + [SMALL_STATE(1323)] = 53127, + [SMALL_STATE(1324)] = 53163, + [SMALL_STATE(1325)] = 53187, + [SMALL_STATE(1326)] = 53216, + [SMALL_STATE(1327)] = 53245, + [SMALL_STATE(1328)] = 53274, + [SMALL_STATE(1329)] = 53305, + [SMALL_STATE(1330)] = 53332, + [SMALL_STATE(1331)] = 53361, + [SMALL_STATE(1332)] = 53392, + [SMALL_STATE(1333)] = 53423, + [SMALL_STATE(1334)] = 53452, + [SMALL_STATE(1335)] = 53481, + [SMALL_STATE(1336)] = 53508, + [SMALL_STATE(1337)] = 53535, + [SMALL_STATE(1338)] = 53564, + [SMALL_STATE(1339)] = 53595, + [SMALL_STATE(1340)] = 53624, + [SMALL_STATE(1341)] = 53649, + [SMALL_STATE(1342)] = 53680, + [SMALL_STATE(1343)] = 53709, + [SMALL_STATE(1344)] = 53740, + [SMALL_STATE(1345)] = 53765, + [SMALL_STATE(1346)] = 53796, + [SMALL_STATE(1347)] = 53825, + [SMALL_STATE(1348)] = 53854, + [SMALL_STATE(1349)] = 53883, + [SMALL_STATE(1350)] = 53912, + [SMALL_STATE(1351)] = 53939, + [SMALL_STATE(1352)] = 53970, + [SMALL_STATE(1353)] = 54001, + [SMALL_STATE(1354)] = 54030, + [SMALL_STATE(1355)] = 54048, + [SMALL_STATE(1356)] = 54072, + [SMALL_STATE(1357)] = 54090, + [SMALL_STATE(1358)] = 54108, + [SMALL_STATE(1359)] = 54140, + [SMALL_STATE(1360)] = 54172, + [SMALL_STATE(1361)] = 54202, + [SMALL_STATE(1362)] = 54228, + [SMALL_STATE(1363)] = 54260, + [SMALL_STATE(1364)] = 54286, + [SMALL_STATE(1365)] = 54304, + [SMALL_STATE(1366)] = 54322, + [SMALL_STATE(1367)] = 54346, + [SMALL_STATE(1368)] = 54372, + [SMALL_STATE(1369)] = 54398, + [SMALL_STATE(1370)] = 54416, [SMALL_STATE(1371)] = 54448, - [SMALL_STATE(1372)] = 54466, - [SMALL_STATE(1373)] = 54484, - [SMALL_STATE(1374)] = 54513, - [SMALL_STATE(1375)] = 54532, - [SMALL_STATE(1376)] = 54561, - [SMALL_STATE(1377)] = 54590, - [SMALL_STATE(1378)] = 54619, - [SMALL_STATE(1379)] = 54648, - [SMALL_STATE(1380)] = 54677, - [SMALL_STATE(1381)] = 54698, - [SMALL_STATE(1382)] = 54719, - [SMALL_STATE(1383)] = 54740, - [SMALL_STATE(1384)] = 54769, - [SMALL_STATE(1385)] = 54790, - [SMALL_STATE(1386)] = 54815, - [SMALL_STATE(1387)] = 54836, - [SMALL_STATE(1388)] = 54857, - [SMALL_STATE(1389)] = 54886, - [SMALL_STATE(1390)] = 54907, - [SMALL_STATE(1391)] = 54932, - [SMALL_STATE(1392)] = 54953, - [SMALL_STATE(1393)] = 54969, - [SMALL_STATE(1394)] = 54985, - [SMALL_STATE(1395)] = 55009, - [SMALL_STATE(1396)] = 55025, - [SMALL_STATE(1397)] = 55051, - [SMALL_STATE(1398)] = 55077, - [SMALL_STATE(1399)] = 55093, - [SMALL_STATE(1400)] = 55109, - [SMALL_STATE(1401)] = 55125, - [SMALL_STATE(1402)] = 55151, - [SMALL_STATE(1403)] = 55177, - [SMALL_STATE(1404)] = 55203, - [SMALL_STATE(1405)] = 55229, - [SMALL_STATE(1406)] = 55255, - [SMALL_STATE(1407)] = 55281, - [SMALL_STATE(1408)] = 55307, + [SMALL_STATE(1372)] = 54470, + [SMALL_STATE(1373)] = 54488, + [SMALL_STATE(1374)] = 54517, + [SMALL_STATE(1375)] = 54538, + [SMALL_STATE(1376)] = 54567, + [SMALL_STATE(1377)] = 54596, + [SMALL_STATE(1378)] = 54625, + [SMALL_STATE(1379)] = 54654, + [SMALL_STATE(1380)] = 54683, + [SMALL_STATE(1381)] = 54704, + [SMALL_STATE(1382)] = 54733, + [SMALL_STATE(1383)] = 54754, + [SMALL_STATE(1384)] = 54775, + [SMALL_STATE(1385)] = 54800, + [SMALL_STATE(1386)] = 54821, + [SMALL_STATE(1387)] = 54842, + [SMALL_STATE(1388)] = 54863, + [SMALL_STATE(1389)] = 54884, + [SMALL_STATE(1390)] = 54913, + [SMALL_STATE(1391)] = 54938, + [SMALL_STATE(1392)] = 54957, + [SMALL_STATE(1393)] = 54983, + [SMALL_STATE(1394)] = 54999, + [SMALL_STATE(1395)] = 55023, + [SMALL_STATE(1396)] = 55039, + [SMALL_STATE(1397)] = 55055, + [SMALL_STATE(1398)] = 55081, + [SMALL_STATE(1399)] = 55097, + [SMALL_STATE(1400)] = 55113, + [SMALL_STATE(1401)] = 55139, + [SMALL_STATE(1402)] = 55165, + [SMALL_STATE(1403)] = 55191, + [SMALL_STATE(1404)] = 55217, + [SMALL_STATE(1405)] = 55243, + [SMALL_STATE(1406)] = 55259, + [SMALL_STATE(1407)] = 55285, + [SMALL_STATE(1408)] = 55301, [SMALL_STATE(1409)] = 55327, [SMALL_STATE(1410)] = 55349, [SMALL_STATE(1411)] = 55369, - [SMALL_STATE(1412)] = 55395, - [SMALL_STATE(1413)] = 55411, - [SMALL_STATE(1414)] = 55429, - [SMALL_STATE(1415)] = 55455, - [SMALL_STATE(1416)] = 55471, - [SMALL_STATE(1417)] = 55487, - [SMALL_STATE(1418)] = 55513, - [SMALL_STATE(1419)] = 55533, - [SMALL_STATE(1420)] = 55548, - [SMALL_STATE(1421)] = 55565, - [SMALL_STATE(1422)] = 55588, - [SMALL_STATE(1423)] = 55603, - [SMALL_STATE(1424)] = 55618, - [SMALL_STATE(1425)] = 55635, - [SMALL_STATE(1426)] = 55658, - [SMALL_STATE(1427)] = 55673, - [SMALL_STATE(1428)] = 55696, - [SMALL_STATE(1429)] = 55711, - [SMALL_STATE(1430)] = 55734, - [SMALL_STATE(1431)] = 55753, - [SMALL_STATE(1432)] = 55776, - [SMALL_STATE(1433)] = 55791, - [SMALL_STATE(1434)] = 55808, - [SMALL_STATE(1435)] = 55833, - [SMALL_STATE(1436)] = 55848, - [SMALL_STATE(1437)] = 55865, - [SMALL_STATE(1438)] = 55888, - [SMALL_STATE(1439)] = 55903, - [SMALL_STATE(1440)] = 55926, - [SMALL_STATE(1441)] = 55945, - [SMALL_STATE(1442)] = 55960, - [SMALL_STATE(1443)] = 55975, - [SMALL_STATE(1444)] = 55991, - [SMALL_STATE(1445)] = 56011, - [SMALL_STATE(1446)] = 56027, - [SMALL_STATE(1447)] = 56045, + [SMALL_STATE(1412)] = 55387, + [SMALL_STATE(1413)] = 55413, + [SMALL_STATE(1414)] = 55439, + [SMALL_STATE(1415)] = 55465, + [SMALL_STATE(1416)] = 55481, + [SMALL_STATE(1417)] = 55501, + [SMALL_STATE(1418)] = 55517, + [SMALL_STATE(1419)] = 55537, + [SMALL_STATE(1420)] = 55552, + [SMALL_STATE(1421)] = 55567, + [SMALL_STATE(1422)] = 55590, + [SMALL_STATE(1423)] = 55605, + [SMALL_STATE(1424)] = 55620, + [SMALL_STATE(1425)] = 55637, + [SMALL_STATE(1426)] = 55660, + [SMALL_STATE(1427)] = 55675, + [SMALL_STATE(1428)] = 55690, + [SMALL_STATE(1429)] = 55713, + [SMALL_STATE(1430)] = 55732, + [SMALL_STATE(1431)] = 55755, + [SMALL_STATE(1432)] = 55770, + [SMALL_STATE(1433)] = 55793, + [SMALL_STATE(1434)] = 55818, + [SMALL_STATE(1435)] = 55835, + [SMALL_STATE(1436)] = 55850, + [SMALL_STATE(1437)] = 55867, + [SMALL_STATE(1438)] = 55890, + [SMALL_STATE(1439)] = 55905, + [SMALL_STATE(1440)] = 55928, + [SMALL_STATE(1441)] = 55947, + [SMALL_STATE(1442)] = 55962, + [SMALL_STATE(1443)] = 55979, + [SMALL_STATE(1444)] = 55995, + [SMALL_STATE(1445)] = 56015, + [SMALL_STATE(1446)] = 56031, + [SMALL_STATE(1447)] = 56049, [SMALL_STATE(1448)] = 56063, - [SMALL_STATE(1449)] = 56077, - [SMALL_STATE(1450)] = 56095, - [SMALL_STATE(1451)] = 56115, + [SMALL_STATE(1449)] = 56081, + [SMALL_STATE(1450)] = 56101, + [SMALL_STATE(1451)] = 56121, [SMALL_STATE(1452)] = 56135, [SMALL_STATE(1453)] = 56149, [SMALL_STATE(1454)] = 56163, @@ -113940,568 +113960,568 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1456)] = 56191, [SMALL_STATE(1457)] = 56205, [SMALL_STATE(1458)] = 56219, - [SMALL_STATE(1459)] = 56233, - [SMALL_STATE(1460)] = 56253, + [SMALL_STATE(1459)] = 56239, + [SMALL_STATE(1460)] = 56257, [SMALL_STATE(1461)] = 56273, [SMALL_STATE(1462)] = 56293, [SMALL_STATE(1463)] = 56307, - [SMALL_STATE(1464)] = 56323, - [SMALL_STATE(1465)] = 56337, - [SMALL_STATE(1466)] = 56351, - [SMALL_STATE(1467)] = 56371, - [SMALL_STATE(1468)] = 56385, - [SMALL_STATE(1469)] = 56405, - [SMALL_STATE(1470)] = 56423, - [SMALL_STATE(1471)] = 56443, - [SMALL_STATE(1472)] = 56463, - [SMALL_STATE(1473)] = 56483, - [SMALL_STATE(1474)] = 56501, - [SMALL_STATE(1475)] = 56519, - [SMALL_STATE(1476)] = 56537, - [SMALL_STATE(1477)] = 56551, - [SMALL_STATE(1478)] = 56571, - [SMALL_STATE(1479)] = 56585, - [SMALL_STATE(1480)] = 56599, - [SMALL_STATE(1481)] = 56619, - [SMALL_STATE(1482)] = 56630, - [SMALL_STATE(1483)] = 56641, - [SMALL_STATE(1484)] = 56660, - [SMALL_STATE(1485)] = 56671, - [SMALL_STATE(1486)] = 56688, - [SMALL_STATE(1487)] = 56699, - [SMALL_STATE(1488)] = 56710, - [SMALL_STATE(1489)] = 56721, - [SMALL_STATE(1490)] = 56732, - [SMALL_STATE(1491)] = 56743, - [SMALL_STATE(1492)] = 56760, - [SMALL_STATE(1493)] = 56771, + [SMALL_STATE(1464)] = 56327, + [SMALL_STATE(1465)] = 56341, + [SMALL_STATE(1466)] = 56355, + [SMALL_STATE(1467)] = 56375, + [SMALL_STATE(1468)] = 56389, + [SMALL_STATE(1469)] = 56409, + [SMALL_STATE(1470)] = 56427, + [SMALL_STATE(1471)] = 56447, + [SMALL_STATE(1472)] = 56461, + [SMALL_STATE(1473)] = 56481, + [SMALL_STATE(1474)] = 56499, + [SMALL_STATE(1475)] = 56517, + [SMALL_STATE(1476)] = 56535, + [SMALL_STATE(1477)] = 56549, + [SMALL_STATE(1478)] = 56569, + [SMALL_STATE(1479)] = 56583, + [SMALL_STATE(1480)] = 56603, + [SMALL_STATE(1481)] = 56623, + [SMALL_STATE(1482)] = 56634, + [SMALL_STATE(1483)] = 56645, + [SMALL_STATE(1484)] = 56656, + [SMALL_STATE(1485)] = 56667, + [SMALL_STATE(1486)] = 56684, + [SMALL_STATE(1487)] = 56703, + [SMALL_STATE(1488)] = 56714, + [SMALL_STATE(1489)] = 56725, + [SMALL_STATE(1490)] = 56736, + [SMALL_STATE(1491)] = 56753, + [SMALL_STATE(1492)] = 56768, + [SMALL_STATE(1493)] = 56779, [SMALL_STATE(1494)] = 56790, - [SMALL_STATE(1495)] = 56805, - [SMALL_STATE(1496)] = 56816, - [SMALL_STATE(1497)] = 56827, - [SMALL_STATE(1498)] = 56838, + [SMALL_STATE(1495)] = 56809, + [SMALL_STATE(1496)] = 56824, + [SMALL_STATE(1497)] = 56835, + [SMALL_STATE(1498)] = 56846, [SMALL_STATE(1499)] = 56857, - [SMALL_STATE(1500)] = 56872, - [SMALL_STATE(1501)] = 56883, - [SMALL_STATE(1502)] = 56893, - [SMALL_STATE(1503)] = 56907, - [SMALL_STATE(1504)] = 56921, - [SMALL_STATE(1505)] = 56935, - [SMALL_STATE(1506)] = 56949, - [SMALL_STATE(1507)] = 56965, - [SMALL_STATE(1508)] = 56979, - [SMALL_STATE(1509)] = 56993, - [SMALL_STATE(1510)] = 57007, - [SMALL_STATE(1511)] = 57021, - [SMALL_STATE(1512)] = 57035, - [SMALL_STATE(1513)] = 57049, - [SMALL_STATE(1514)] = 57063, - [SMALL_STATE(1515)] = 57079, - [SMALL_STATE(1516)] = 57095, - [SMALL_STATE(1517)] = 57109, - [SMALL_STATE(1518)] = 57125, - [SMALL_STATE(1519)] = 57141, - [SMALL_STATE(1520)] = 57155, - [SMALL_STATE(1521)] = 57169, - [SMALL_STATE(1522)] = 57183, - [SMALL_STATE(1523)] = 57197, - [SMALL_STATE(1524)] = 57213, - [SMALL_STATE(1525)] = 57223, - [SMALL_STATE(1526)] = 57239, - [SMALL_STATE(1527)] = 57255, - [SMALL_STATE(1528)] = 57269, - [SMALL_STATE(1529)] = 57285, - [SMALL_STATE(1530)] = 57299, - [SMALL_STATE(1531)] = 57313, - [SMALL_STATE(1532)] = 57327, - [SMALL_STATE(1533)] = 57341, - [SMALL_STATE(1534)] = 57355, - [SMALL_STATE(1535)] = 57371, - [SMALL_STATE(1536)] = 57385, - [SMALL_STATE(1537)] = 57399, - [SMALL_STATE(1538)] = 57413, - [SMALL_STATE(1539)] = 57429, - [SMALL_STATE(1540)] = 57443, - [SMALL_STATE(1541)] = 57457, - [SMALL_STATE(1542)] = 57471, - [SMALL_STATE(1543)] = 57485, - [SMALL_STATE(1544)] = 57499, - [SMALL_STATE(1545)] = 57513, - [SMALL_STATE(1546)] = 57527, - [SMALL_STATE(1547)] = 57543, - [SMALL_STATE(1548)] = 57557, - [SMALL_STATE(1549)] = 57573, - [SMALL_STATE(1550)] = 57589, - [SMALL_STATE(1551)] = 57603, - [SMALL_STATE(1552)] = 57617, - [SMALL_STATE(1553)] = 57631, - [SMALL_STATE(1554)] = 57645, - [SMALL_STATE(1555)] = 57661, - [SMALL_STATE(1556)] = 57675, - [SMALL_STATE(1557)] = 57691, - [SMALL_STATE(1558)] = 57707, - [SMALL_STATE(1559)] = 57723, - [SMALL_STATE(1560)] = 57737, - [SMALL_STATE(1561)] = 57751, - [SMALL_STATE(1562)] = 57765, - [SMALL_STATE(1563)] = 57779, - [SMALL_STATE(1564)] = 57793, - [SMALL_STATE(1565)] = 57809, - [SMALL_STATE(1566)] = 57822, - [SMALL_STATE(1567)] = 57835, - [SMALL_STATE(1568)] = 57848, - [SMALL_STATE(1569)] = 57861, - [SMALL_STATE(1570)] = 57874, - [SMALL_STATE(1571)] = 57887, - [SMALL_STATE(1572)] = 57900, - [SMALL_STATE(1573)] = 57913, - [SMALL_STATE(1574)] = 57926, - [SMALL_STATE(1575)] = 57939, - [SMALL_STATE(1576)] = 57952, - [SMALL_STATE(1577)] = 57965, - [SMALL_STATE(1578)] = 57978, - [SMALL_STATE(1579)] = 57991, - [SMALL_STATE(1580)] = 58004, - [SMALL_STATE(1581)] = 58017, - [SMALL_STATE(1582)] = 58030, - [SMALL_STATE(1583)] = 58043, - [SMALL_STATE(1584)] = 58056, - [SMALL_STATE(1585)] = 58069, - [SMALL_STATE(1586)] = 58082, - [SMALL_STATE(1587)] = 58095, - [SMALL_STATE(1588)] = 58108, - [SMALL_STATE(1589)] = 58121, - [SMALL_STATE(1590)] = 58134, - [SMALL_STATE(1591)] = 58147, - [SMALL_STATE(1592)] = 58156, - [SMALL_STATE(1593)] = 58169, - [SMALL_STATE(1594)] = 58182, - [SMALL_STATE(1595)] = 58195, - [SMALL_STATE(1596)] = 58208, - [SMALL_STATE(1597)] = 58221, - [SMALL_STATE(1598)] = 58234, - [SMALL_STATE(1599)] = 58247, - [SMALL_STATE(1600)] = 58260, - [SMALL_STATE(1601)] = 58273, - [SMALL_STATE(1602)] = 58286, - [SMALL_STATE(1603)] = 58299, - [SMALL_STATE(1604)] = 58312, - [SMALL_STATE(1605)] = 58325, - [SMALL_STATE(1606)] = 58338, - [SMALL_STATE(1607)] = 58351, - [SMALL_STATE(1608)] = 58364, - [SMALL_STATE(1609)] = 58377, - [SMALL_STATE(1610)] = 58390, - [SMALL_STATE(1611)] = 58401, - [SMALL_STATE(1612)] = 58412, - [SMALL_STATE(1613)] = 58425, - [SMALL_STATE(1614)] = 58438, - [SMALL_STATE(1615)] = 58451, - [SMALL_STATE(1616)] = 58464, - [SMALL_STATE(1617)] = 58477, - [SMALL_STATE(1618)] = 58490, - [SMALL_STATE(1619)] = 58503, - [SMALL_STATE(1620)] = 58516, - [SMALL_STATE(1621)] = 58529, - [SMALL_STATE(1622)] = 58542, - [SMALL_STATE(1623)] = 58555, - [SMALL_STATE(1624)] = 58564, - [SMALL_STATE(1625)] = 58577, - [SMALL_STATE(1626)] = 58590, - [SMALL_STATE(1627)] = 58603, - [SMALL_STATE(1628)] = 58616, - [SMALL_STATE(1629)] = 58629, - [SMALL_STATE(1630)] = 58642, - [SMALL_STATE(1631)] = 58655, - [SMALL_STATE(1632)] = 58668, - [SMALL_STATE(1633)] = 58677, - [SMALL_STATE(1634)] = 58690, - [SMALL_STATE(1635)] = 58699, - [SMALL_STATE(1636)] = 58712, - [SMALL_STATE(1637)] = 58725, - [SMALL_STATE(1638)] = 58734, - [SMALL_STATE(1639)] = 58745, - [SMALL_STATE(1640)] = 58758, - [SMALL_STATE(1641)] = 58771, - [SMALL_STATE(1642)] = 58780, - [SMALL_STATE(1643)] = 58793, - [SMALL_STATE(1644)] = 58806, - [SMALL_STATE(1645)] = 58819, - [SMALL_STATE(1646)] = 58832, - [SMALL_STATE(1647)] = 58845, - [SMALL_STATE(1648)] = 58858, - [SMALL_STATE(1649)] = 58871, - [SMALL_STATE(1650)] = 58880, - [SMALL_STATE(1651)] = 58891, - [SMALL_STATE(1652)] = 58904, - [SMALL_STATE(1653)] = 58917, - [SMALL_STATE(1654)] = 58930, - [SMALL_STATE(1655)] = 58943, - [SMALL_STATE(1656)] = 58956, - [SMALL_STATE(1657)] = 58965, - [SMALL_STATE(1658)] = 58978, - [SMALL_STATE(1659)] = 58991, - [SMALL_STATE(1660)] = 59004, - [SMALL_STATE(1661)] = 59017, - [SMALL_STATE(1662)] = 59030, - [SMALL_STATE(1663)] = 59043, - [SMALL_STATE(1664)] = 59056, - [SMALL_STATE(1665)] = 59069, - [SMALL_STATE(1666)] = 59078, - [SMALL_STATE(1667)] = 59091, - [SMALL_STATE(1668)] = 59104, - [SMALL_STATE(1669)] = 59117, - [SMALL_STATE(1670)] = 59130, - [SMALL_STATE(1671)] = 59143, - [SMALL_STATE(1672)] = 59156, - [SMALL_STATE(1673)] = 59169, - [SMALL_STATE(1674)] = 59182, - [SMALL_STATE(1675)] = 59195, - [SMALL_STATE(1676)] = 59204, - [SMALL_STATE(1677)] = 59213, - [SMALL_STATE(1678)] = 59226, - [SMALL_STATE(1679)] = 59239, - [SMALL_STATE(1680)] = 59252, - [SMALL_STATE(1681)] = 59263, - [SMALL_STATE(1682)] = 59276, - [SMALL_STATE(1683)] = 59289, - [SMALL_STATE(1684)] = 59302, - [SMALL_STATE(1685)] = 59315, - [SMALL_STATE(1686)] = 59324, - [SMALL_STATE(1687)] = 59337, - [SMALL_STATE(1688)] = 59347, - [SMALL_STATE(1689)] = 59357, - [SMALL_STATE(1690)] = 59367, - [SMALL_STATE(1691)] = 59377, - [SMALL_STATE(1692)] = 59387, - [SMALL_STATE(1693)] = 59397, - [SMALL_STATE(1694)] = 59405, - [SMALL_STATE(1695)] = 59415, - [SMALL_STATE(1696)] = 59425, - [SMALL_STATE(1697)] = 59435, - [SMALL_STATE(1698)] = 59445, - [SMALL_STATE(1699)] = 59453, - [SMALL_STATE(1700)] = 59463, - [SMALL_STATE(1701)] = 59473, - [SMALL_STATE(1702)] = 59483, - [SMALL_STATE(1703)] = 59493, - [SMALL_STATE(1704)] = 59503, - [SMALL_STATE(1705)] = 59511, - [SMALL_STATE(1706)] = 59521, - [SMALL_STATE(1707)] = 59531, - [SMALL_STATE(1708)] = 59539, - [SMALL_STATE(1709)] = 59549, - [SMALL_STATE(1710)] = 59559, - [SMALL_STATE(1711)] = 59569, - [SMALL_STATE(1712)] = 59579, - [SMALL_STATE(1713)] = 59587, - [SMALL_STATE(1714)] = 59595, - [SMALL_STATE(1715)] = 59603, - [SMALL_STATE(1716)] = 59611, - [SMALL_STATE(1717)] = 59621, - [SMALL_STATE(1718)] = 59631, - [SMALL_STATE(1719)] = 59641, - [SMALL_STATE(1720)] = 59651, - [SMALL_STATE(1721)] = 59661, - [SMALL_STATE(1722)] = 59671, - [SMALL_STATE(1723)] = 59681, - [SMALL_STATE(1724)] = 59691, - [SMALL_STATE(1725)] = 59699, - [SMALL_STATE(1726)] = 59707, - [SMALL_STATE(1727)] = 59717, - [SMALL_STATE(1728)] = 59727, - [SMALL_STATE(1729)] = 59735, - [SMALL_STATE(1730)] = 59745, - [SMALL_STATE(1731)] = 59755, - [SMALL_STATE(1732)] = 59765, - [SMALL_STATE(1733)] = 59775, - [SMALL_STATE(1734)] = 59785, - [SMALL_STATE(1735)] = 59795, - [SMALL_STATE(1736)] = 59805, - [SMALL_STATE(1737)] = 59815, - [SMALL_STATE(1738)] = 59825, - [SMALL_STATE(1739)] = 59835, - [SMALL_STATE(1740)] = 59845, - [SMALL_STATE(1741)] = 59855, - [SMALL_STATE(1742)] = 59865, - [SMALL_STATE(1743)] = 59875, - [SMALL_STATE(1744)] = 59885, - [SMALL_STATE(1745)] = 59895, - [SMALL_STATE(1746)] = 59905, - [SMALL_STATE(1747)] = 59915, - [SMALL_STATE(1748)] = 59925, - [SMALL_STATE(1749)] = 59933, - [SMALL_STATE(1750)] = 59941, - [SMALL_STATE(1751)] = 59951, - [SMALL_STATE(1752)] = 59959, - [SMALL_STATE(1753)] = 59969, - [SMALL_STATE(1754)] = 59977, - [SMALL_STATE(1755)] = 59987, - [SMALL_STATE(1756)] = 59997, - [SMALL_STATE(1757)] = 60007, - [SMALL_STATE(1758)] = 60017, - [SMALL_STATE(1759)] = 60025, - [SMALL_STATE(1760)] = 60035, - [SMALL_STATE(1761)] = 60045, - [SMALL_STATE(1762)] = 60055, - [SMALL_STATE(1763)] = 60065, - [SMALL_STATE(1764)] = 60075, - [SMALL_STATE(1765)] = 60085, - [SMALL_STATE(1766)] = 60095, - [SMALL_STATE(1767)] = 60103, - [SMALL_STATE(1768)] = 60113, - [SMALL_STATE(1769)] = 60123, - [SMALL_STATE(1770)] = 60133, - [SMALL_STATE(1771)] = 60143, - [SMALL_STATE(1772)] = 60153, - [SMALL_STATE(1773)] = 60163, - [SMALL_STATE(1774)] = 60171, - [SMALL_STATE(1775)] = 60181, - [SMALL_STATE(1776)] = 60188, - [SMALL_STATE(1777)] = 60195, - [SMALL_STATE(1778)] = 60202, - [SMALL_STATE(1779)] = 60209, - [SMALL_STATE(1780)] = 60216, - [SMALL_STATE(1781)] = 60223, - [SMALL_STATE(1782)] = 60230, - [SMALL_STATE(1783)] = 60237, - [SMALL_STATE(1784)] = 60244, - [SMALL_STATE(1785)] = 60251, - [SMALL_STATE(1786)] = 60258, - [SMALL_STATE(1787)] = 60265, - [SMALL_STATE(1788)] = 60272, - [SMALL_STATE(1789)] = 60279, - [SMALL_STATE(1790)] = 60286, - [SMALL_STATE(1791)] = 60293, - [SMALL_STATE(1792)] = 60300, - [SMALL_STATE(1793)] = 60307, - [SMALL_STATE(1794)] = 60314, - [SMALL_STATE(1795)] = 60321, - [SMALL_STATE(1796)] = 60328, - [SMALL_STATE(1797)] = 60335, - [SMALL_STATE(1798)] = 60342, - [SMALL_STATE(1799)] = 60349, - [SMALL_STATE(1800)] = 60356, - [SMALL_STATE(1801)] = 60363, - [SMALL_STATE(1802)] = 60370, - [SMALL_STATE(1803)] = 60377, - [SMALL_STATE(1804)] = 60384, - [SMALL_STATE(1805)] = 60391, - [SMALL_STATE(1806)] = 60398, - [SMALL_STATE(1807)] = 60405, - [SMALL_STATE(1808)] = 60412, - [SMALL_STATE(1809)] = 60419, - [SMALL_STATE(1810)] = 60426, - [SMALL_STATE(1811)] = 60433, - [SMALL_STATE(1812)] = 60440, - [SMALL_STATE(1813)] = 60447, - [SMALL_STATE(1814)] = 60454, - [SMALL_STATE(1815)] = 60461, - [SMALL_STATE(1816)] = 60468, - [SMALL_STATE(1817)] = 60475, - [SMALL_STATE(1818)] = 60482, - [SMALL_STATE(1819)] = 60489, - [SMALL_STATE(1820)] = 60496, - [SMALL_STATE(1821)] = 60503, - [SMALL_STATE(1822)] = 60510, - [SMALL_STATE(1823)] = 60517, - [SMALL_STATE(1824)] = 60524, - [SMALL_STATE(1825)] = 60531, - [SMALL_STATE(1826)] = 60538, - [SMALL_STATE(1827)] = 60545, - [SMALL_STATE(1828)] = 60552, - [SMALL_STATE(1829)] = 60559, - [SMALL_STATE(1830)] = 60566, - [SMALL_STATE(1831)] = 60573, - [SMALL_STATE(1832)] = 60580, - [SMALL_STATE(1833)] = 60587, - [SMALL_STATE(1834)] = 60594, - [SMALL_STATE(1835)] = 60601, - [SMALL_STATE(1836)] = 60608, - [SMALL_STATE(1837)] = 60615, - [SMALL_STATE(1838)] = 60622, - [SMALL_STATE(1839)] = 60629, - [SMALL_STATE(1840)] = 60636, - [SMALL_STATE(1841)] = 60643, - [SMALL_STATE(1842)] = 60650, - [SMALL_STATE(1843)] = 60657, - [SMALL_STATE(1844)] = 60664, - [SMALL_STATE(1845)] = 60671, - [SMALL_STATE(1846)] = 60678, - [SMALL_STATE(1847)] = 60685, - [SMALL_STATE(1848)] = 60692, - [SMALL_STATE(1849)] = 60699, - [SMALL_STATE(1850)] = 60706, - [SMALL_STATE(1851)] = 60713, - [SMALL_STATE(1852)] = 60720, - [SMALL_STATE(1853)] = 60727, - [SMALL_STATE(1854)] = 60734, - [SMALL_STATE(1855)] = 60741, - [SMALL_STATE(1856)] = 60748, - [SMALL_STATE(1857)] = 60755, - [SMALL_STATE(1858)] = 60762, - [SMALL_STATE(1859)] = 60769, - [SMALL_STATE(1860)] = 60776, - [SMALL_STATE(1861)] = 60783, - [SMALL_STATE(1862)] = 60790, - [SMALL_STATE(1863)] = 60797, - [SMALL_STATE(1864)] = 60804, - [SMALL_STATE(1865)] = 60811, - [SMALL_STATE(1866)] = 60818, - [SMALL_STATE(1867)] = 60825, - [SMALL_STATE(1868)] = 60832, - [SMALL_STATE(1869)] = 60839, - [SMALL_STATE(1870)] = 60846, - [SMALL_STATE(1871)] = 60853, - [SMALL_STATE(1872)] = 60860, - [SMALL_STATE(1873)] = 60867, - [SMALL_STATE(1874)] = 60874, - [SMALL_STATE(1875)] = 60881, - [SMALL_STATE(1876)] = 60888, - [SMALL_STATE(1877)] = 60895, - [SMALL_STATE(1878)] = 60902, - [SMALL_STATE(1879)] = 60909, - [SMALL_STATE(1880)] = 60916, - [SMALL_STATE(1881)] = 60923, - [SMALL_STATE(1882)] = 60930, - [SMALL_STATE(1883)] = 60937, - [SMALL_STATE(1884)] = 60944, - [SMALL_STATE(1885)] = 60951, - [SMALL_STATE(1886)] = 60958, - [SMALL_STATE(1887)] = 60965, - [SMALL_STATE(1888)] = 60972, - [SMALL_STATE(1889)] = 60979, - [SMALL_STATE(1890)] = 60986, - [SMALL_STATE(1891)] = 60993, - [SMALL_STATE(1892)] = 61000, - [SMALL_STATE(1893)] = 61007, - [SMALL_STATE(1894)] = 61014, - [SMALL_STATE(1895)] = 61021, - [SMALL_STATE(1896)] = 61028, - [SMALL_STATE(1897)] = 61035, - [SMALL_STATE(1898)] = 61042, - [SMALL_STATE(1899)] = 61049, - [SMALL_STATE(1900)] = 61056, - [SMALL_STATE(1901)] = 61063, - [SMALL_STATE(1902)] = 61070, - [SMALL_STATE(1903)] = 61077, - [SMALL_STATE(1904)] = 61084, - [SMALL_STATE(1905)] = 61091, - [SMALL_STATE(1906)] = 61098, - [SMALL_STATE(1907)] = 61105, - [SMALL_STATE(1908)] = 61112, - [SMALL_STATE(1909)] = 61119, - [SMALL_STATE(1910)] = 61126, - [SMALL_STATE(1911)] = 61133, - [SMALL_STATE(1912)] = 61140, - [SMALL_STATE(1913)] = 61147, - [SMALL_STATE(1914)] = 61154, - [SMALL_STATE(1915)] = 61161, - [SMALL_STATE(1916)] = 61168, - [SMALL_STATE(1917)] = 61175, - [SMALL_STATE(1918)] = 61182, - [SMALL_STATE(1919)] = 61189, - [SMALL_STATE(1920)] = 61196, - [SMALL_STATE(1921)] = 61203, - [SMALL_STATE(1922)] = 61210, - [SMALL_STATE(1923)] = 61217, - [SMALL_STATE(1924)] = 61224, - [SMALL_STATE(1925)] = 61231, - [SMALL_STATE(1926)] = 61238, - [SMALL_STATE(1927)] = 61245, - [SMALL_STATE(1928)] = 61252, - [SMALL_STATE(1929)] = 61259, - [SMALL_STATE(1930)] = 61266, - [SMALL_STATE(1931)] = 61273, - [SMALL_STATE(1932)] = 61280, - [SMALL_STATE(1933)] = 61287, - [SMALL_STATE(1934)] = 61294, - [SMALL_STATE(1935)] = 61301, - [SMALL_STATE(1936)] = 61308, - [SMALL_STATE(1937)] = 61315, - [SMALL_STATE(1938)] = 61322, - [SMALL_STATE(1939)] = 61329, - [SMALL_STATE(1940)] = 61336, - [SMALL_STATE(1941)] = 61343, - [SMALL_STATE(1942)] = 61350, - [SMALL_STATE(1943)] = 61357, - [SMALL_STATE(1944)] = 61364, - [SMALL_STATE(1945)] = 61371, - [SMALL_STATE(1946)] = 61378, - [SMALL_STATE(1947)] = 61385, - [SMALL_STATE(1948)] = 61392, - [SMALL_STATE(1949)] = 61399, - [SMALL_STATE(1950)] = 61406, - [SMALL_STATE(1951)] = 61413, - [SMALL_STATE(1952)] = 61420, - [SMALL_STATE(1953)] = 61427, - [SMALL_STATE(1954)] = 61434, - [SMALL_STATE(1955)] = 61441, - [SMALL_STATE(1956)] = 61448, - [SMALL_STATE(1957)] = 61455, - [SMALL_STATE(1958)] = 61462, - [SMALL_STATE(1959)] = 61469, - [SMALL_STATE(1960)] = 61476, - [SMALL_STATE(1961)] = 61483, - [SMALL_STATE(1962)] = 61490, - [SMALL_STATE(1963)] = 61497, - [SMALL_STATE(1964)] = 61504, - [SMALL_STATE(1965)] = 61511, - [SMALL_STATE(1966)] = 61518, - [SMALL_STATE(1967)] = 61525, - [SMALL_STATE(1968)] = 61532, - [SMALL_STATE(1969)] = 61539, - [SMALL_STATE(1970)] = 61546, - [SMALL_STATE(1971)] = 61553, - [SMALL_STATE(1972)] = 61560, - [SMALL_STATE(1973)] = 61567, - [SMALL_STATE(1974)] = 61574, - [SMALL_STATE(1975)] = 61581, - [SMALL_STATE(1976)] = 61588, - [SMALL_STATE(1977)] = 61595, - [SMALL_STATE(1978)] = 61602, - [SMALL_STATE(1979)] = 61609, - [SMALL_STATE(1980)] = 61616, - [SMALL_STATE(1981)] = 61623, - [SMALL_STATE(1982)] = 61630, - [SMALL_STATE(1983)] = 61637, - [SMALL_STATE(1984)] = 61644, - [SMALL_STATE(1985)] = 61651, - [SMALL_STATE(1986)] = 61658, - [SMALL_STATE(1987)] = 61665, - [SMALL_STATE(1988)] = 61672, - [SMALL_STATE(1989)] = 61679, - [SMALL_STATE(1990)] = 61686, - [SMALL_STATE(1991)] = 61693, - [SMALL_STATE(1992)] = 61700, - [SMALL_STATE(1993)] = 61707, - [SMALL_STATE(1994)] = 61714, - [SMALL_STATE(1995)] = 61721, - [SMALL_STATE(1996)] = 61728, - [SMALL_STATE(1997)] = 61735, - [SMALL_STATE(1998)] = 61742, - [SMALL_STATE(1999)] = 61749, - [SMALL_STATE(2000)] = 61756, - [SMALL_STATE(2001)] = 61763, - [SMALL_STATE(2002)] = 61770, - [SMALL_STATE(2003)] = 61777, - [SMALL_STATE(2004)] = 61784, - [SMALL_STATE(2005)] = 61791, - [SMALL_STATE(2006)] = 61798, - [SMALL_STATE(2007)] = 61805, - [SMALL_STATE(2008)] = 61812, - [SMALL_STATE(2009)] = 61819, - [SMALL_STATE(2010)] = 61826, - [SMALL_STATE(2011)] = 61833, - [SMALL_STATE(2012)] = 61840, - [SMALL_STATE(2013)] = 61847, - [SMALL_STATE(2014)] = 61854, - [SMALL_STATE(2015)] = 61861, - [SMALL_STATE(2016)] = 61868, - [SMALL_STATE(2017)] = 61875, - [SMALL_STATE(2018)] = 61882, - [SMALL_STATE(2019)] = 61889, - [SMALL_STATE(2020)] = 61896, + [SMALL_STATE(1500)] = 56876, + [SMALL_STATE(1501)] = 56887, + [SMALL_STATE(1502)] = 56897, + [SMALL_STATE(1503)] = 56911, + [SMALL_STATE(1504)] = 56925, + [SMALL_STATE(1505)] = 56939, + [SMALL_STATE(1506)] = 56953, + [SMALL_STATE(1507)] = 56969, + [SMALL_STATE(1508)] = 56983, + [SMALL_STATE(1509)] = 56997, + [SMALL_STATE(1510)] = 57011, + [SMALL_STATE(1511)] = 57025, + [SMALL_STATE(1512)] = 57039, + [SMALL_STATE(1513)] = 57053, + [SMALL_STATE(1514)] = 57067, + [SMALL_STATE(1515)] = 57083, + [SMALL_STATE(1516)] = 57099, + [SMALL_STATE(1517)] = 57113, + [SMALL_STATE(1518)] = 57129, + [SMALL_STATE(1519)] = 57145, + [SMALL_STATE(1520)] = 57159, + [SMALL_STATE(1521)] = 57173, + [SMALL_STATE(1522)] = 57187, + [SMALL_STATE(1523)] = 57201, + [SMALL_STATE(1524)] = 57217, + [SMALL_STATE(1525)] = 57227, + [SMALL_STATE(1526)] = 57243, + [SMALL_STATE(1527)] = 57259, + [SMALL_STATE(1528)] = 57273, + [SMALL_STATE(1529)] = 57289, + [SMALL_STATE(1530)] = 57303, + [SMALL_STATE(1531)] = 57317, + [SMALL_STATE(1532)] = 57331, + [SMALL_STATE(1533)] = 57345, + [SMALL_STATE(1534)] = 57359, + [SMALL_STATE(1535)] = 57375, + [SMALL_STATE(1536)] = 57389, + [SMALL_STATE(1537)] = 57403, + [SMALL_STATE(1538)] = 57417, + [SMALL_STATE(1539)] = 57433, + [SMALL_STATE(1540)] = 57447, + [SMALL_STATE(1541)] = 57461, + [SMALL_STATE(1542)] = 57475, + [SMALL_STATE(1543)] = 57489, + [SMALL_STATE(1544)] = 57503, + [SMALL_STATE(1545)] = 57517, + [SMALL_STATE(1546)] = 57531, + [SMALL_STATE(1547)] = 57547, + [SMALL_STATE(1548)] = 57561, + [SMALL_STATE(1549)] = 57577, + [SMALL_STATE(1550)] = 57593, + [SMALL_STATE(1551)] = 57607, + [SMALL_STATE(1552)] = 57621, + [SMALL_STATE(1553)] = 57635, + [SMALL_STATE(1554)] = 57649, + [SMALL_STATE(1555)] = 57665, + [SMALL_STATE(1556)] = 57679, + [SMALL_STATE(1557)] = 57695, + [SMALL_STATE(1558)] = 57711, + [SMALL_STATE(1559)] = 57727, + [SMALL_STATE(1560)] = 57741, + [SMALL_STATE(1561)] = 57755, + [SMALL_STATE(1562)] = 57769, + [SMALL_STATE(1563)] = 57783, + [SMALL_STATE(1564)] = 57797, + [SMALL_STATE(1565)] = 57813, + [SMALL_STATE(1566)] = 57826, + [SMALL_STATE(1567)] = 57839, + [SMALL_STATE(1568)] = 57852, + [SMALL_STATE(1569)] = 57865, + [SMALL_STATE(1570)] = 57878, + [SMALL_STATE(1571)] = 57891, + [SMALL_STATE(1572)] = 57904, + [SMALL_STATE(1573)] = 57917, + [SMALL_STATE(1574)] = 57930, + [SMALL_STATE(1575)] = 57943, + [SMALL_STATE(1576)] = 57956, + [SMALL_STATE(1577)] = 57969, + [SMALL_STATE(1578)] = 57982, + [SMALL_STATE(1579)] = 57995, + [SMALL_STATE(1580)] = 58008, + [SMALL_STATE(1581)] = 58021, + [SMALL_STATE(1582)] = 58034, + [SMALL_STATE(1583)] = 58047, + [SMALL_STATE(1584)] = 58060, + [SMALL_STATE(1585)] = 58073, + [SMALL_STATE(1586)] = 58086, + [SMALL_STATE(1587)] = 58099, + [SMALL_STATE(1588)] = 58112, + [SMALL_STATE(1589)] = 58125, + [SMALL_STATE(1590)] = 58138, + [SMALL_STATE(1591)] = 58151, + [SMALL_STATE(1592)] = 58160, + [SMALL_STATE(1593)] = 58173, + [SMALL_STATE(1594)] = 58186, + [SMALL_STATE(1595)] = 58199, + [SMALL_STATE(1596)] = 58212, + [SMALL_STATE(1597)] = 58225, + [SMALL_STATE(1598)] = 58238, + [SMALL_STATE(1599)] = 58251, + [SMALL_STATE(1600)] = 58264, + [SMALL_STATE(1601)] = 58277, + [SMALL_STATE(1602)] = 58290, + [SMALL_STATE(1603)] = 58303, + [SMALL_STATE(1604)] = 58316, + [SMALL_STATE(1605)] = 58329, + [SMALL_STATE(1606)] = 58342, + [SMALL_STATE(1607)] = 58355, + [SMALL_STATE(1608)] = 58368, + [SMALL_STATE(1609)] = 58381, + [SMALL_STATE(1610)] = 58394, + [SMALL_STATE(1611)] = 58405, + [SMALL_STATE(1612)] = 58416, + [SMALL_STATE(1613)] = 58429, + [SMALL_STATE(1614)] = 58442, + [SMALL_STATE(1615)] = 58455, + [SMALL_STATE(1616)] = 58468, + [SMALL_STATE(1617)] = 58481, + [SMALL_STATE(1618)] = 58494, + [SMALL_STATE(1619)] = 58507, + [SMALL_STATE(1620)] = 58520, + [SMALL_STATE(1621)] = 58533, + [SMALL_STATE(1622)] = 58546, + [SMALL_STATE(1623)] = 58559, + [SMALL_STATE(1624)] = 58568, + [SMALL_STATE(1625)] = 58581, + [SMALL_STATE(1626)] = 58594, + [SMALL_STATE(1627)] = 58607, + [SMALL_STATE(1628)] = 58620, + [SMALL_STATE(1629)] = 58633, + [SMALL_STATE(1630)] = 58646, + [SMALL_STATE(1631)] = 58659, + [SMALL_STATE(1632)] = 58672, + [SMALL_STATE(1633)] = 58681, + [SMALL_STATE(1634)] = 58694, + [SMALL_STATE(1635)] = 58703, + [SMALL_STATE(1636)] = 58716, + [SMALL_STATE(1637)] = 58729, + [SMALL_STATE(1638)] = 58738, + [SMALL_STATE(1639)] = 58749, + [SMALL_STATE(1640)] = 58762, + [SMALL_STATE(1641)] = 58775, + [SMALL_STATE(1642)] = 58784, + [SMALL_STATE(1643)] = 58797, + [SMALL_STATE(1644)] = 58810, + [SMALL_STATE(1645)] = 58823, + [SMALL_STATE(1646)] = 58836, + [SMALL_STATE(1647)] = 58849, + [SMALL_STATE(1648)] = 58862, + [SMALL_STATE(1649)] = 58875, + [SMALL_STATE(1650)] = 58884, + [SMALL_STATE(1651)] = 58895, + [SMALL_STATE(1652)] = 58908, + [SMALL_STATE(1653)] = 58921, + [SMALL_STATE(1654)] = 58934, + [SMALL_STATE(1655)] = 58947, + [SMALL_STATE(1656)] = 58960, + [SMALL_STATE(1657)] = 58969, + [SMALL_STATE(1658)] = 58982, + [SMALL_STATE(1659)] = 58995, + [SMALL_STATE(1660)] = 59008, + [SMALL_STATE(1661)] = 59021, + [SMALL_STATE(1662)] = 59034, + [SMALL_STATE(1663)] = 59047, + [SMALL_STATE(1664)] = 59060, + [SMALL_STATE(1665)] = 59073, + [SMALL_STATE(1666)] = 59082, + [SMALL_STATE(1667)] = 59095, + [SMALL_STATE(1668)] = 59108, + [SMALL_STATE(1669)] = 59121, + [SMALL_STATE(1670)] = 59134, + [SMALL_STATE(1671)] = 59147, + [SMALL_STATE(1672)] = 59160, + [SMALL_STATE(1673)] = 59173, + [SMALL_STATE(1674)] = 59186, + [SMALL_STATE(1675)] = 59199, + [SMALL_STATE(1676)] = 59208, + [SMALL_STATE(1677)] = 59217, + [SMALL_STATE(1678)] = 59230, + [SMALL_STATE(1679)] = 59243, + [SMALL_STATE(1680)] = 59256, + [SMALL_STATE(1681)] = 59267, + [SMALL_STATE(1682)] = 59280, + [SMALL_STATE(1683)] = 59293, + [SMALL_STATE(1684)] = 59306, + [SMALL_STATE(1685)] = 59319, + [SMALL_STATE(1686)] = 59328, + [SMALL_STATE(1687)] = 59341, + [SMALL_STATE(1688)] = 59351, + [SMALL_STATE(1689)] = 59361, + [SMALL_STATE(1690)] = 59371, + [SMALL_STATE(1691)] = 59381, + [SMALL_STATE(1692)] = 59391, + [SMALL_STATE(1693)] = 59401, + [SMALL_STATE(1694)] = 59409, + [SMALL_STATE(1695)] = 59419, + [SMALL_STATE(1696)] = 59429, + [SMALL_STATE(1697)] = 59439, + [SMALL_STATE(1698)] = 59449, + [SMALL_STATE(1699)] = 59457, + [SMALL_STATE(1700)] = 59467, + [SMALL_STATE(1701)] = 59477, + [SMALL_STATE(1702)] = 59487, + [SMALL_STATE(1703)] = 59497, + [SMALL_STATE(1704)] = 59507, + [SMALL_STATE(1705)] = 59515, + [SMALL_STATE(1706)] = 59525, + [SMALL_STATE(1707)] = 59535, + [SMALL_STATE(1708)] = 59543, + [SMALL_STATE(1709)] = 59553, + [SMALL_STATE(1710)] = 59563, + [SMALL_STATE(1711)] = 59573, + [SMALL_STATE(1712)] = 59583, + [SMALL_STATE(1713)] = 59591, + [SMALL_STATE(1714)] = 59599, + [SMALL_STATE(1715)] = 59607, + [SMALL_STATE(1716)] = 59615, + [SMALL_STATE(1717)] = 59625, + [SMALL_STATE(1718)] = 59635, + [SMALL_STATE(1719)] = 59645, + [SMALL_STATE(1720)] = 59655, + [SMALL_STATE(1721)] = 59665, + [SMALL_STATE(1722)] = 59675, + [SMALL_STATE(1723)] = 59685, + [SMALL_STATE(1724)] = 59695, + [SMALL_STATE(1725)] = 59703, + [SMALL_STATE(1726)] = 59711, + [SMALL_STATE(1727)] = 59721, + [SMALL_STATE(1728)] = 59731, + [SMALL_STATE(1729)] = 59739, + [SMALL_STATE(1730)] = 59749, + [SMALL_STATE(1731)] = 59759, + [SMALL_STATE(1732)] = 59769, + [SMALL_STATE(1733)] = 59779, + [SMALL_STATE(1734)] = 59789, + [SMALL_STATE(1735)] = 59799, + [SMALL_STATE(1736)] = 59809, + [SMALL_STATE(1737)] = 59819, + [SMALL_STATE(1738)] = 59829, + [SMALL_STATE(1739)] = 59839, + [SMALL_STATE(1740)] = 59849, + [SMALL_STATE(1741)] = 59859, + [SMALL_STATE(1742)] = 59869, + [SMALL_STATE(1743)] = 59879, + [SMALL_STATE(1744)] = 59889, + [SMALL_STATE(1745)] = 59899, + [SMALL_STATE(1746)] = 59909, + [SMALL_STATE(1747)] = 59919, + [SMALL_STATE(1748)] = 59929, + [SMALL_STATE(1749)] = 59937, + [SMALL_STATE(1750)] = 59945, + [SMALL_STATE(1751)] = 59955, + [SMALL_STATE(1752)] = 59963, + [SMALL_STATE(1753)] = 59973, + [SMALL_STATE(1754)] = 59981, + [SMALL_STATE(1755)] = 59991, + [SMALL_STATE(1756)] = 60001, + [SMALL_STATE(1757)] = 60011, + [SMALL_STATE(1758)] = 60021, + [SMALL_STATE(1759)] = 60029, + [SMALL_STATE(1760)] = 60039, + [SMALL_STATE(1761)] = 60049, + [SMALL_STATE(1762)] = 60059, + [SMALL_STATE(1763)] = 60069, + [SMALL_STATE(1764)] = 60079, + [SMALL_STATE(1765)] = 60089, + [SMALL_STATE(1766)] = 60099, + [SMALL_STATE(1767)] = 60107, + [SMALL_STATE(1768)] = 60117, + [SMALL_STATE(1769)] = 60127, + [SMALL_STATE(1770)] = 60137, + [SMALL_STATE(1771)] = 60147, + [SMALL_STATE(1772)] = 60157, + [SMALL_STATE(1773)] = 60167, + [SMALL_STATE(1774)] = 60175, + [SMALL_STATE(1775)] = 60185, + [SMALL_STATE(1776)] = 60192, + [SMALL_STATE(1777)] = 60199, + [SMALL_STATE(1778)] = 60206, + [SMALL_STATE(1779)] = 60213, + [SMALL_STATE(1780)] = 60220, + [SMALL_STATE(1781)] = 60227, + [SMALL_STATE(1782)] = 60234, + [SMALL_STATE(1783)] = 60241, + [SMALL_STATE(1784)] = 60248, + [SMALL_STATE(1785)] = 60255, + [SMALL_STATE(1786)] = 60262, + [SMALL_STATE(1787)] = 60269, + [SMALL_STATE(1788)] = 60276, + [SMALL_STATE(1789)] = 60283, + [SMALL_STATE(1790)] = 60290, + [SMALL_STATE(1791)] = 60297, + [SMALL_STATE(1792)] = 60304, + [SMALL_STATE(1793)] = 60311, + [SMALL_STATE(1794)] = 60318, + [SMALL_STATE(1795)] = 60325, + [SMALL_STATE(1796)] = 60332, + [SMALL_STATE(1797)] = 60339, + [SMALL_STATE(1798)] = 60346, + [SMALL_STATE(1799)] = 60353, + [SMALL_STATE(1800)] = 60360, + [SMALL_STATE(1801)] = 60367, + [SMALL_STATE(1802)] = 60374, + [SMALL_STATE(1803)] = 60381, + [SMALL_STATE(1804)] = 60388, + [SMALL_STATE(1805)] = 60395, + [SMALL_STATE(1806)] = 60402, + [SMALL_STATE(1807)] = 60409, + [SMALL_STATE(1808)] = 60416, + [SMALL_STATE(1809)] = 60423, + [SMALL_STATE(1810)] = 60430, + [SMALL_STATE(1811)] = 60437, + [SMALL_STATE(1812)] = 60444, + [SMALL_STATE(1813)] = 60451, + [SMALL_STATE(1814)] = 60458, + [SMALL_STATE(1815)] = 60465, + [SMALL_STATE(1816)] = 60472, + [SMALL_STATE(1817)] = 60479, + [SMALL_STATE(1818)] = 60486, + [SMALL_STATE(1819)] = 60493, + [SMALL_STATE(1820)] = 60500, + [SMALL_STATE(1821)] = 60507, + [SMALL_STATE(1822)] = 60514, + [SMALL_STATE(1823)] = 60521, + [SMALL_STATE(1824)] = 60528, + [SMALL_STATE(1825)] = 60535, + [SMALL_STATE(1826)] = 60542, + [SMALL_STATE(1827)] = 60549, + [SMALL_STATE(1828)] = 60556, + [SMALL_STATE(1829)] = 60563, + [SMALL_STATE(1830)] = 60570, + [SMALL_STATE(1831)] = 60577, + [SMALL_STATE(1832)] = 60584, + [SMALL_STATE(1833)] = 60591, + [SMALL_STATE(1834)] = 60598, + [SMALL_STATE(1835)] = 60605, + [SMALL_STATE(1836)] = 60612, + [SMALL_STATE(1837)] = 60619, + [SMALL_STATE(1838)] = 60626, + [SMALL_STATE(1839)] = 60633, + [SMALL_STATE(1840)] = 60640, + [SMALL_STATE(1841)] = 60647, + [SMALL_STATE(1842)] = 60654, + [SMALL_STATE(1843)] = 60661, + [SMALL_STATE(1844)] = 60668, + [SMALL_STATE(1845)] = 60675, + [SMALL_STATE(1846)] = 60682, + [SMALL_STATE(1847)] = 60689, + [SMALL_STATE(1848)] = 60696, + [SMALL_STATE(1849)] = 60703, + [SMALL_STATE(1850)] = 60710, + [SMALL_STATE(1851)] = 60717, + [SMALL_STATE(1852)] = 60724, + [SMALL_STATE(1853)] = 60731, + [SMALL_STATE(1854)] = 60738, + [SMALL_STATE(1855)] = 60745, + [SMALL_STATE(1856)] = 60752, + [SMALL_STATE(1857)] = 60759, + [SMALL_STATE(1858)] = 60766, + [SMALL_STATE(1859)] = 60773, + [SMALL_STATE(1860)] = 60780, + [SMALL_STATE(1861)] = 60787, + [SMALL_STATE(1862)] = 60794, + [SMALL_STATE(1863)] = 60801, + [SMALL_STATE(1864)] = 60808, + [SMALL_STATE(1865)] = 60815, + [SMALL_STATE(1866)] = 60822, + [SMALL_STATE(1867)] = 60829, + [SMALL_STATE(1868)] = 60836, + [SMALL_STATE(1869)] = 60843, + [SMALL_STATE(1870)] = 60850, + [SMALL_STATE(1871)] = 60857, + [SMALL_STATE(1872)] = 60864, + [SMALL_STATE(1873)] = 60871, + [SMALL_STATE(1874)] = 60878, + [SMALL_STATE(1875)] = 60885, + [SMALL_STATE(1876)] = 60892, + [SMALL_STATE(1877)] = 60899, + [SMALL_STATE(1878)] = 60906, + [SMALL_STATE(1879)] = 60913, + [SMALL_STATE(1880)] = 60920, + [SMALL_STATE(1881)] = 60927, + [SMALL_STATE(1882)] = 60934, + [SMALL_STATE(1883)] = 60941, + [SMALL_STATE(1884)] = 60948, + [SMALL_STATE(1885)] = 60955, + [SMALL_STATE(1886)] = 60962, + [SMALL_STATE(1887)] = 60969, + [SMALL_STATE(1888)] = 60976, + [SMALL_STATE(1889)] = 60983, + [SMALL_STATE(1890)] = 60990, + [SMALL_STATE(1891)] = 60997, + [SMALL_STATE(1892)] = 61004, + [SMALL_STATE(1893)] = 61011, + [SMALL_STATE(1894)] = 61018, + [SMALL_STATE(1895)] = 61025, + [SMALL_STATE(1896)] = 61032, + [SMALL_STATE(1897)] = 61039, + [SMALL_STATE(1898)] = 61046, + [SMALL_STATE(1899)] = 61053, + [SMALL_STATE(1900)] = 61060, + [SMALL_STATE(1901)] = 61067, + [SMALL_STATE(1902)] = 61074, + [SMALL_STATE(1903)] = 61081, + [SMALL_STATE(1904)] = 61088, + [SMALL_STATE(1905)] = 61095, + [SMALL_STATE(1906)] = 61102, + [SMALL_STATE(1907)] = 61109, + [SMALL_STATE(1908)] = 61116, + [SMALL_STATE(1909)] = 61123, + [SMALL_STATE(1910)] = 61130, + [SMALL_STATE(1911)] = 61137, + [SMALL_STATE(1912)] = 61144, + [SMALL_STATE(1913)] = 61151, + [SMALL_STATE(1914)] = 61158, + [SMALL_STATE(1915)] = 61165, + [SMALL_STATE(1916)] = 61172, + [SMALL_STATE(1917)] = 61179, + [SMALL_STATE(1918)] = 61186, + [SMALL_STATE(1919)] = 61193, + [SMALL_STATE(1920)] = 61200, + [SMALL_STATE(1921)] = 61207, + [SMALL_STATE(1922)] = 61214, + [SMALL_STATE(1923)] = 61221, + [SMALL_STATE(1924)] = 61228, + [SMALL_STATE(1925)] = 61235, + [SMALL_STATE(1926)] = 61242, + [SMALL_STATE(1927)] = 61249, + [SMALL_STATE(1928)] = 61256, + [SMALL_STATE(1929)] = 61263, + [SMALL_STATE(1930)] = 61270, + [SMALL_STATE(1931)] = 61277, + [SMALL_STATE(1932)] = 61284, + [SMALL_STATE(1933)] = 61291, + [SMALL_STATE(1934)] = 61298, + [SMALL_STATE(1935)] = 61305, + [SMALL_STATE(1936)] = 61312, + [SMALL_STATE(1937)] = 61319, + [SMALL_STATE(1938)] = 61326, + [SMALL_STATE(1939)] = 61333, + [SMALL_STATE(1940)] = 61340, + [SMALL_STATE(1941)] = 61347, + [SMALL_STATE(1942)] = 61354, + [SMALL_STATE(1943)] = 61361, + [SMALL_STATE(1944)] = 61368, + [SMALL_STATE(1945)] = 61375, + [SMALL_STATE(1946)] = 61382, + [SMALL_STATE(1947)] = 61389, + [SMALL_STATE(1948)] = 61396, + [SMALL_STATE(1949)] = 61403, + [SMALL_STATE(1950)] = 61410, + [SMALL_STATE(1951)] = 61417, + [SMALL_STATE(1952)] = 61424, + [SMALL_STATE(1953)] = 61431, + [SMALL_STATE(1954)] = 61438, + [SMALL_STATE(1955)] = 61445, + [SMALL_STATE(1956)] = 61452, + [SMALL_STATE(1957)] = 61459, + [SMALL_STATE(1958)] = 61466, + [SMALL_STATE(1959)] = 61473, + [SMALL_STATE(1960)] = 61480, + [SMALL_STATE(1961)] = 61487, + [SMALL_STATE(1962)] = 61494, + [SMALL_STATE(1963)] = 61501, + [SMALL_STATE(1964)] = 61508, + [SMALL_STATE(1965)] = 61515, + [SMALL_STATE(1966)] = 61522, + [SMALL_STATE(1967)] = 61529, + [SMALL_STATE(1968)] = 61536, + [SMALL_STATE(1969)] = 61543, + [SMALL_STATE(1970)] = 61550, + [SMALL_STATE(1971)] = 61557, + [SMALL_STATE(1972)] = 61564, + [SMALL_STATE(1973)] = 61571, + [SMALL_STATE(1974)] = 61578, + [SMALL_STATE(1975)] = 61585, + [SMALL_STATE(1976)] = 61592, + [SMALL_STATE(1977)] = 61599, + [SMALL_STATE(1978)] = 61606, + [SMALL_STATE(1979)] = 61613, + [SMALL_STATE(1980)] = 61620, + [SMALL_STATE(1981)] = 61627, + [SMALL_STATE(1982)] = 61634, + [SMALL_STATE(1983)] = 61641, + [SMALL_STATE(1984)] = 61648, + [SMALL_STATE(1985)] = 61655, + [SMALL_STATE(1986)] = 61662, + [SMALL_STATE(1987)] = 61669, + [SMALL_STATE(1988)] = 61676, + [SMALL_STATE(1989)] = 61683, + [SMALL_STATE(1990)] = 61690, + [SMALL_STATE(1991)] = 61697, + [SMALL_STATE(1992)] = 61704, + [SMALL_STATE(1993)] = 61711, + [SMALL_STATE(1994)] = 61718, + [SMALL_STATE(1995)] = 61725, + [SMALL_STATE(1996)] = 61732, + [SMALL_STATE(1997)] = 61739, + [SMALL_STATE(1998)] = 61746, + [SMALL_STATE(1999)] = 61753, + [SMALL_STATE(2000)] = 61760, + [SMALL_STATE(2001)] = 61767, + [SMALL_STATE(2002)] = 61774, + [SMALL_STATE(2003)] = 61781, + [SMALL_STATE(2004)] = 61788, + [SMALL_STATE(2005)] = 61795, + [SMALL_STATE(2006)] = 61802, + [SMALL_STATE(2007)] = 61809, + [SMALL_STATE(2008)] = 61816, + [SMALL_STATE(2009)] = 61823, + [SMALL_STATE(2010)] = 61830, + [SMALL_STATE(2011)] = 61837, + [SMALL_STATE(2012)] = 61844, + [SMALL_STATE(2013)] = 61851, + [SMALL_STATE(2014)] = 61858, + [SMALL_STATE(2015)] = 61865, + [SMALL_STATE(2016)] = 61872, + [SMALL_STATE(2017)] = 61879, + [SMALL_STATE(2018)] = 61886, + [SMALL_STATE(2019)] = 61893, + [SMALL_STATE(2020)] = 61900, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -114510,7 +114530,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0, 0, 0), [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), @@ -114519,29 +114539,29 @@ static const TSParseActionEntry ts_parse_actions[] = { [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), @@ -114550,14 +114570,14 @@ static const TSParseActionEntry ts_parse_actions[] = { [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), @@ -114567,25 +114587,25 @@ static const TSParseActionEntry ts_parse_actions[] = { [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), [163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 40), [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), @@ -114594,19 +114614,19 @@ static const TSParseActionEntry ts_parse_actions[] = { [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), [191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 40), [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), [197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 17), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(456), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1384), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(457), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1383), [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1917), [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1200), [211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), @@ -114617,29 +114637,29 @@ static const TSParseActionEntry ts_parse_actions[] = { [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(563), [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(569), [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(79), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(979), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1052), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(929), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(983), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1050), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(928), [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1767), [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1950), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(955), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(956), [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(41), [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(843), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(776), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(818), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(764), + [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(759), + [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(814), [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1580), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1434), - [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1498), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1433), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1499), [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1689), [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1687), - [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(589), + [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(590), [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1824), [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1692), [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(315), [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2015), - [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(521), + [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(513), [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1935), [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1934), [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1926), @@ -114650,81 +114670,81 @@ static const TSParseActionEntry ts_parse_actions[] = { [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1811), [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1813), [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1823), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1463), - [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(700), + [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1443), + [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(708), [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1650), [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), - [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(700), + [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(708), [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(702), [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(454), - [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1391), + [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1386), [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1969), [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1202), [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1757), [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(229), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(981), - [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1035), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(930), + [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(980), + [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1033), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(929), [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(38), [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1734), [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1764), - [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(586), + [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(587), [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1793), [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1735), [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(403), [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2018), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(506), + [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(504), [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1822), [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1820), [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1954), @@ -114736,7 +114756,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), @@ -114744,25 +114764,25 @@ static const TSParseActionEntry ts_parse_actions[] = { [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(453), - [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1389), + [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1388), [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1837), [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1193), [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1838), [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1711), [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(284), - [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(999), - [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1077), - [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(902), + [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(981), + [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1079), + [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(919), [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(40), [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1695), [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1694), - [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(656), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(657), [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1842), [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1690), [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(317), [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1980), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(521), [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1845), [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1848), [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1846), @@ -114774,7 +114794,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(462), - [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), + [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1374), [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2020), [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1219), [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2014), @@ -114783,29 +114803,29 @@ static const TSParseActionEntry ts_parse_actions[] = { [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(563), [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(563), [660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(569), - [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(975), - [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1071), + [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(974), + [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1072), [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(932), [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), [675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1767), [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1950), - [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(955), + [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(956), [684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(33), [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(843), - [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(776), - [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(818), + [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(764), + [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(759), + [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(814), [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1580), - [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1434), - [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1498), + [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1433), + [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1499), [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1706), - [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(655), + [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(656), [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1839), [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1754), [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(338), [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), - [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(504), + [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(502), [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1896), [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1775), [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1792), @@ -114814,41 +114834,41 @@ static const TSParseActionEntry ts_parse_actions[] = { [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1811), [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1813), [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1823), - [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1463), + [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1443), [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1115), [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1650), [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1115), [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(702), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 9), [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 9), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(457), + [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(458), [783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(445), [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(563), [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(563), [794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(569), [797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(79), - [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(979), - [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1052), - [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(776), + [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(983), + [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1050), + [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(764), [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), [812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1767), [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1950), [818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(41), [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(843), - [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(818), + [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(759), + [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(814), [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1580), - [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1434), - [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1498), + [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1433), + [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1499), [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1689), [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1687), [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1692), [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(315), [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2015), - [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(521), + [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(513), [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1935), [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1934), [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1926), @@ -114859,11 +114879,11 @@ static const TSParseActionEntry ts_parse_actions[] = { [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1811), [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1813), [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1823), - [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1463), - [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(700), + [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1443), + [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(708), [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1650), [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), - [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(700), + [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(708), [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(702), [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), @@ -114874,8 +114894,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(459), [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(284), - [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(999), - [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1077), + [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(981), + [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1079), [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(40), [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1695), @@ -114883,7 +114903,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1690), [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(317), [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1980), - [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(521), [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1845), [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1848), [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1846), @@ -114893,15 +114913,15 @@ static const TSParseActionEntry ts_parse_actions[] = { [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 9), [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(452), [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(229), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(981), - [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1035), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(980), + [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1033), [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(38), [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1734), [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1764), [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1735), [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(403), [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2018), - [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(506), + [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(504), [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1822), [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1820), [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1954), @@ -114912,15 +114932,15 @@ static const TSParseActionEntry ts_parse_actions[] = { [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(455), [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(234), - [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(975), - [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1071), + [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(974), + [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1072), [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(33), [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1706), [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1754), [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(338), [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), - [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(504), + [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(502), [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1896), [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1775), [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1792), @@ -114937,7 +114957,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1999), [1097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1688), [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 27), [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 27), @@ -115073,13 +115093,13 @@ static const TSParseActionEntry ts_parse_actions[] = { [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [1386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(753), + [1386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(761), [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(445), [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(563), [1395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(563), @@ -115089,12 +115109,12 @@ static const TSParseActionEntry ts_parse_actions[] = { [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(38), [1410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1734), [1413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1764), - [1416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(586), + [1416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(587), [1419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1793), [1422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1735), [1425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(403), [1428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2018), - [1431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(506), + [1431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(504), [1434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1822), [1437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1820), [1440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1954), @@ -115105,72 +115125,72 @@ static const TSParseActionEntry ts_parse_actions[] = { [1455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1811), [1458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1813), [1461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1823), - [1464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1463), - [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(700), + [1464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1443), + [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(708), [1470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1650), [1473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1525), - [1476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(700), + [1476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(708), [1479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(702), - [1482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(760), + [1482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(753), [1485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(234), [1488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(33), [1491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1709), [1494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1706), - [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(655), + [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(656), [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1839), [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1754), [1506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(338), [1509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1778), - [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(504), + [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(502), [1515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1896), [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1775), [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1792), [1524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1703), [1527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2007), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [1532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(761), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [1532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(752), [1535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(284), [1538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1741), - [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(596), + [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(597), [1544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1937), [1547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1740), [1550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1999), [1553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1688), [1556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2000), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(748), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(751), [1564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(40), [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1695), [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1694), - [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(656), + [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(657), [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1842), [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1690), [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(317), [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1980), - [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(500), + [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(521), [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1845), [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1848), [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1846), [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1723), - [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(758), + [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(757), [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(79), [1609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(41), [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1689), [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1687), - [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(589), + [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(590), [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1824), [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1692), [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(315), [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2015), - [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(521), + [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(513), [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1935), [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1934), [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1926), [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1737), [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1924), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 1, 0, 2), [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 1, 0, 2), [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), @@ -115183,33 +115203,33 @@ static const TSParseActionEntry ts_parse_actions[] = { [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, 0, 1), [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_not_binary, 1, 0, 0), - [1701] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), REDUCE(sym__expression_not_binary, 1, 0, 0), SHIFT(1038), + [1701] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), REDUCE(sym__expression_not_binary, 1, 0, 0), SHIFT(1036), [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_not_binary, 1, 0, 0), [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, 0, 1), REDUCE(sym__expression_not_binary, 1, 0, 0), [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), REDUCE(sym__expression_not_binary, 1, 0, 0), [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), - [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), + [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), @@ -115217,1554 +115237,1563 @@ static const TSParseActionEntry ts_parse_actions[] = { [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 40), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 17), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 40), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 17), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [1871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(841), - [1874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1973), - [1877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1161), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), - [1882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1884), - [1885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1730), - [1888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(776), - [1894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), - [1897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1733), - [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1950), - [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(843), - [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(818), - [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1580), - [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1434), - [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1498), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 56), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 84), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 40), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 56), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 0), - [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 105), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [1996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), - [1999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1201), - [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1938), - [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1702), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [2014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1948), - [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1206), - [2020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1941), - [2023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1722), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), - [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), - [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(666), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 129), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 129), - [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 120), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 120), - [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 119), - [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 119), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 109), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 109), - [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), - [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 125), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 125), - [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 124), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 124), - [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 108), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 108), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), - [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), - [2152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [2155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(776), - [2158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), - [2161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1733), - [2164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1950), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), - [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 69), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 69), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), - [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 40), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 17), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 40), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 17), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [1883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(842), + [1886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1973), + [1889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1161), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [1894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1884), + [1897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1730), + [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(759), + [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(764), + [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), + [1909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1733), + [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1950), + [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(843), + [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(814), + [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1580), + [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1433), + [1927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1499), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 56), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 84), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 40), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 56), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 0), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 105), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [2022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1948), + [2025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1206), + [2028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1941), + [2031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1722), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [2054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), + [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1201), + [2060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1938), + [2063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1702), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [2102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(668), + [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 129), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 129), + [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 109), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 109), + [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 119), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 119), + [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 108), + [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 108), + [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), + [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), + [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 120), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 120), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), + [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 124), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 124), + [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 125), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 125), + [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(759), + [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(764), + [2174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), + [2177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1733), + [2180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1950), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), + [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), + [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), + [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 37), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 37), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 45), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 45), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 57), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 57), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), - [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 12), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 12), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 13), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 13), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 106), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 106), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 45), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 45), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 5), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 5), - [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 30), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 30), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 5), - [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 5), - [2295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(841), - [2298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [2301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(776), - [2304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), - [2307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1733), - [2310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1950), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), - [2315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(843), - [2318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(818), - [2321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1580), - [2324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1434), - [2327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1498), - [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 9), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 9), - [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 5), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 5), - [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), - [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), - [2342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(750), - [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 25), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 25), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 7), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 7), - [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), - [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), - [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 53), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 53), - [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 25), - [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 25), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 7), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 7), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 70), - [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 70), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 96), - [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 96), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 30), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 30), - [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 52), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 52), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), - [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 8), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 8), - [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 26), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 26), - [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 24), - [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 24), - [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(785), - [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 80), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 80), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), - [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 8), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 8), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 54), - [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 54), - [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), - [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 24), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 24), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 52), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 52), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 26), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 26), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 7), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 7), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 7), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 7), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 26), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 26), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), - [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), - [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, 0, 52), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, 0, 52), - [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 80), - [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 80), - [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 7), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 7), - [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, 0, 0), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 0), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 8), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 8), - [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 24), - [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 24), - [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 78), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 78), - [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 8), - [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 8), - [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 24), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 24), - [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 54), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 54), - [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), - [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), - [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 53), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 53), - [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 52), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 52), - [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 25), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 25), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 8), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 8), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), - [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [2624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 26), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 26), - [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), - [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 25), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 25), - [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 50), - [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 50), - [2646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), SHIFT(1038), - [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(834), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), - [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), - [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 24), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 24), - [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 73), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 73), - [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 40), - [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 40), - [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), - [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 42), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 42), - [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 40), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 40), - [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 79), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 79), - [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 79), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 79), - [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 97), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 97), - [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 41), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 41), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 42), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 42), - [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 72), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 72), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), - [2722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(1971), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 12), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 12), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), + [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), + [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), + [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 13), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 13), + [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 37), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 37), + [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 45), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 45), + [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 69), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 69), + [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 57), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 57), + [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 106), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 106), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 5), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 5), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 5), + [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 5), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 9), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 9), + [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 5), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 5), + [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 45), + [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 45), + [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(842), + [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(759), + [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(764), + [2320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), + [2323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1733), + [2326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1950), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), + [2331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(843), + [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(814), + [2337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1580), + [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1433), + [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1499), + [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 30), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 30), + [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [2354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(746), + [2357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(739), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 7), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 7), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 25), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 25), + [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 7), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 7), + [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 53), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 53), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 25), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 25), + [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 96), + [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 96), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 70), + [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 70), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 30), + [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 30), + [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 52), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 52), + [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(781), + [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 80), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 80), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 24), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 24), + [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 26), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 26), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), + [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 8), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 8), + [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), + [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 54), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 54), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), + [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 8), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 8), + [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 52), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 52), + [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 24), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 24), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 26), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 26), + [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 8), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 8), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 24), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 24), + [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), + [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), + [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), + [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 26), + [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 26), + [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), + [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), + [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, 0, 0), + [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 0), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 80), + [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 80), + [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), + [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 7), + [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 7), + [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, 0, 52), + [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, 0, 52), + [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 24), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 24), + [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 54), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 54), + [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 8), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 8), + [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 7), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 7), + [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 78), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 78), + [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 25), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 25), + [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 7), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 7), + [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 53), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 53), + [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 52), + [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 52), + [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), + [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), + [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 8), + [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 8), + [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [2639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 26), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 26), + [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 50), + [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 50), + [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 25), + [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 25), + [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 24), + [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 24), + [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), SHIFT(1036), + [2672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(833), + [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 42), + [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 42), + [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), + [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), + [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 72), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 72), + [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 79), + [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 79), + [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 40), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 40), + [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 79), + [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 79), + [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 97), + [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 97), + [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 40), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 40), + [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 41), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 41), + [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), + [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), + [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 42), + [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 42), + [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 73), + [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 73), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 50), - [2777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), SHIFT(1971), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), - [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), - [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), - [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), - [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [2801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 24), - [2812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(1971), - [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), - [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 8), - [2819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(1971), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 78), - [2826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), SHIFT(1971), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [2839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), SHIFT(1648), - [2842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), SHIFT(978), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), - [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym__type_specifier, 1, 0, 1), - [2852] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym__type_specifier, 1, 0, 1), SHIFT(1038), - [2856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym__type_specifier, 1, 0, 1), - [2859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), - [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 77), - [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 77), - [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), - [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), - [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), - [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), - [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1109), - [2973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1108), - [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 44), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), - [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 102), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 63), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 83), - [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 115), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 0, 116), - [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 82), - [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 104), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 103), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3, 0, 0), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 114), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [3124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), - [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), - [3128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), - [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [3136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 14), - [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 3), - [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 14), - [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 3), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), - [3241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 3), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 3), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [3263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 42), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 3), - [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 3), - [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 14), - [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 14), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), - [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 14), - [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 14), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [3367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1260), - [3370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1261), - [3373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1263), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, 0, 1), SHIFT(1249), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [3399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), SHIFT(785), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), SHIFT(785), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [3413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), SHIFT(785), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [3422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), SHIFT(785), - [3425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), SHIFT(1253), - [3428] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(785), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [3434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), SHIFT(1258), - [3437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, 0, 0), SHIFT(1239), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [3444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(1967), - [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 2, 0, 34), - [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 0, 34), - [3453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 0, 34), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 40), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, 0, 34), - [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, 0, 34), - [3473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), - [3475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1316), - [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), - [3480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), - [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), - [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, 0, 34), - [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, 0, 34), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 17), - [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), - [3501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1767), - [3504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), - [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 32), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 110), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 89), - [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), - [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), - [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 60), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, 0, 22), - [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), - [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 17), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 40), - [3558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1610), - [3561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1167), - [3564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1890), - [3567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1769), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 17), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 89), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 32), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), - [3594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), - [3597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), - [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 32), - [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), - [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 60), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 40), - [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 17), - [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 110), - [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 40), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), - [3621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), - [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 60), - [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 22), - [3629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 22), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 22), - [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 89), - [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 110), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 22), - [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 22), - [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 92), - [3649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 92), - [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 32), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), - [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), - [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), - [3671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), - [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 112), - [3675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 112), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 0), - [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 32), - [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), - [3693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), - [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), - [3705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), - [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 0, 34), - [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 0, 34), - [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 35), - [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 22), - [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 22), - [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 92), - [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 92), - [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), - [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), - [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 22), - [3727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 22), - [3729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1610), - [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), - [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), - [3736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(1413), - [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), - [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), - [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 112), - [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 112), - [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 6), - [3749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 6), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), - [3755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), - [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 51), - [3759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 51), - [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 22), - [3763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 22), - [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 21), - [3775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 21), - [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), - [3779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), - [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 34), - [3791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 34), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), - [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), - [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), - [3807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), - [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 92), - [3814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 92), - [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 4, 0, 34), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 22), - [3822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 22), - [3824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(588), - [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), - [3829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(1970), - [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), - [3834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), - [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 112), - [3838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 112), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), - [3852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1524), - [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 89), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 19), - [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), - [3863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), - [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 43), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 40), - [3871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 40), - [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 72), - [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 72), - [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 40), - [3879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 40), - [3881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 73), - [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 73), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 41), - [3897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 41), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), - [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 46), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 75), - [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 32), - [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 60), - [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 97), - [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 97), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), - [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 74), - [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 22), - [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 6), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 20), - [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 92), - [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 112), - [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 98), - [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 34), - [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), - [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), - [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 93), - [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), - [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), - [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 32), - [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 22), - [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 11), - [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 118), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), SHIFT_REPEAT(1337), - [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 107), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, 0, 101), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [4030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 117), SHIFT_REPEAT(1418), - [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 117), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 107), - [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 86), - [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), - [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 86), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 117), SHIFT_REPEAT(1408), - [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 117), - [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 122), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 48), - [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 22), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [4090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 127), SHIFT_REPEAT(1382), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 127), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 48), - [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), SHIFT_REPEAT(1287), - [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), - [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), - [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [4142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [4145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), - [4158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1560), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 49), - [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [4191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1648), - [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [4204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), SHIFT_REPEAT(1149), - [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1731), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [4248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(477), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 99), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 131), - [4329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(725), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), - [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 131), - [4336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 130), SHIFT_REPEAT(1877), - [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 130), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 86), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, 0, 32), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [4365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 128), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 118), - [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 121), - [4385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1028), - [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [4394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(1749), - [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1205), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 126), - [4410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(498), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 123), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [4429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 86), - [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 121), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), - [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 123), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [4485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 49), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 6), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), - [4517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), - [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, 0, 113), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [4551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 72), - [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 97), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 73), - [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 72), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 73), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 72), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 41), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [4658] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 73), - [4704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 97), - [4706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 97), - [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 97), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [4714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 72), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [4720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 73), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [4774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 41), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 41), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 73), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 40), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [4830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 72), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 41), - [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 97), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 17), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 41), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), + [2741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(1971), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), + [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 50), + [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), SHIFT(1971), + [2797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), + [2809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [2816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), + [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 24), + [2825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(1971), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), + [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 8), + [2834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(1971), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 78), + [2841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), SHIFT(1971), + [2844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), SHIFT(1648), + [2847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), SHIFT(977), + [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [2864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym__type_specifier, 1, 0, 1), + [2867] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym__type_specifier, 1, 0, 1), SHIFT(1036), + [2871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym__type_specifier, 1, 0, 1), + [2874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, 0, 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 77), + [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 77), + [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), + [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), + [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), + [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [2963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1108), + [2966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1107), + [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), + [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), + [2983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 44), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 102), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 63), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 83), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 0, 116), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 82), + [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), + [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 104), + [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 103), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 115), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3, 0, 0), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 114), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [3155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(759), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 14), + [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 3), + [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 14), + [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 3), + [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [3180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), + [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), + [3260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 3), + [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 3), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [3282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 42), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [3316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 3), + [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 3), + [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 14), + [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 14), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), + [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 14), + [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 14), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [3386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1260), + [3389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1261), + [3392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1263), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, 0, 1), SHIFT(1249), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [3418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), SHIFT(781), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [3427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), SHIFT(781), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [3432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), SHIFT(781), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [3441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), SHIFT(781), + [3444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), SHIFT(1253), + [3447] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(781), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [3453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), SHIFT(1258), + [3456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, 0, 0), SHIFT(1239), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [3463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(1967), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 2, 0, 34), + [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 0, 34), + [3472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 0, 34), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 40), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), + [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, 0, 34), + [3490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, 0, 34), + [3492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), + [3494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1316), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), + [3499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), + [3502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), + [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, 0, 34), + [3506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, 0, 34), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 17), + [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [3520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1767), + [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 32), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 110), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 89), + [3543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), + [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), + [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 60), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, 0, 22), + [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 17), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 40), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 60), + [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 17), + [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 17), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 32), + [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 89), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), + [3601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), + [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 32), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 40), + [3618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1610), + [3621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1167), + [3624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1890), + [3627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1769), + [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 110), + [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 40), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), + [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 22), + [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 22), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 22), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 89), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 110), + [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 22), + [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 22), + [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 92), + [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 92), + [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 32), + [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 60), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 112), + [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 112), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 32), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 0), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 51), + [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 51), + [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 35), + [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 0, 34), + [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 0, 34), + [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), + [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), + [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 22), + [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 22), + [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 92), + [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 92), + [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 22), + [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 22), + [3752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1610), + [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [3757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [3759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(1411), + [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [3764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 6), + [3768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 6), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 112), + [3774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 112), + [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 22), + [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 22), + [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 112), + [3786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 112), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 21), + [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 21), + [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), + [3796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), + [3802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), + [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 34), + [3806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 34), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [3818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [3826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 92), + [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 92), + [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 4, 0, 34), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 22), + [3839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 22), + [3841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(589), + [3844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), + [3846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(1970), + [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [3851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [3857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), + [3871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1524), + [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 19), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), + [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), + [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 43), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 40), + [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 40), + [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 72), + [3892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 72), + [3894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 40), + [3898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 40), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 89), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 73), + [3910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 73), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 41), + [3916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 41), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), + [3922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 46), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 75), + [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 32), + [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 60), + [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 97), + [3940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 97), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 92), + [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 74), + [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 98), + [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 6), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), + [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 20), + [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 112), + [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 32), + [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 34), + [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), + [3976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 93), + [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 22), + [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 22), + [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 11), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 118), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), SHIFT_REPEAT(1337), + [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 107), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, 0, 101), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [4049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 117), SHIFT_REPEAT(1418), + [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 117), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 107), + [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 86), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 86), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [4090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 117), SHIFT_REPEAT(1416), + [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 117), + [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 122), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 48), + [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 22), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [4109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 127), SHIFT_REPEAT(1385), + [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 127), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 48), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [4146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), SHIFT_REPEAT(1287), + [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), + [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [4161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), + [4164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [4175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), + [4177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1560), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), + [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 49), + [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [4210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1648), + [4213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [4223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), SHIFT_REPEAT(1149), + [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [4256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1731), + [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [4267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(477), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 99), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 131), + [4348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(734), + [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 131), + [4355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 130), SHIFT_REPEAT(1877), + [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 130), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 86), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, 0, 32), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 128), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 118), + [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 121), + [4404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1043), + [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [4413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(1749), + [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1205), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 126), + [4429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 123), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 86), + [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 121), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), + [4484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 123), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 49), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 6), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), + [4536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [4552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), + [4554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, 0, 113), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [4570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 72), + [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 97), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 73), + [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 72), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 73), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 72), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 73), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 41), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [4677] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 73), + [4723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 97), + [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 97), + [4727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 97), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [4733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 72), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [4739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 73), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 41), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [4809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 41), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [4829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 40), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 72), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 41), + [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 97), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 17), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 41), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), }; #ifdef __cplusplus diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index c4a48da..7d1b32d 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -1185,3 +1185,23 @@ int main() { (string_content)) (string_literal (string_content))))))))) + +================================================================================ +Static in Array Declarations +================================================================================ + +void foo (int a[static 10]); + +-------------------------------------------------------------------------------- + +(translation_unit + (declaration + (primitive_type) + (function_declarator + (identifier) + (parameter_list + (parameter_declaration + (primitive_type) + (array_declarator + (identifier) + (number_literal)))))))